*{
    padding: 0;
    margin: 0;
    color: white;
    font-family: "Noto Sans", sans-serif;
    text-shadow: 0px 0px 10px #ffffff;
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

@media (max-width: 768px) {
    html{
        font-size: 12px;
    }
}

body{
    overflow: hidden;
    position: relative;
    height: 100lvh;
}

h1{
    position: absolute;
    display: inline-block;
    color: white;
    z-index: 10;
    text-align: center;
    width: 100%;
    top: 20%;
    transform: translate(0, -100%);
    text-shadow: 0px 0px 10px #ffffff;
}

iframe{
    width: 100dvw;
    height: 100dvh;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.info-div{
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, 0);
    width: 80%;
    max-width: 1000px;
    padding: 1rem;
}

.info-div>ul{
    margin-top: 2rem;
    list-style: none;
}