* {
    padding: 0;
    margin: 0;
}

body {
    position: relative;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    color: white;
}

#root {
    width: 100vw;
    height: 100vh;
    background-image: url(bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

h1 {
    font-size: 6rem;
    text-align: center;
    font-weight: bold;
    font-family: system-ui;
    filter: drop-shadow(0px 0px 2px white);
    font-style: oblique;
    text-decoration: underline;
}

.bt span{
    font-size: .75em;
    font-family: monospace;
    color: #ffffff;
    text-align: center;
}
.bt {
    font-size: 5.5rem;
    font-family: fantasy;
    filter: drop-shadow(2px 2px 3px black);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: column-reverse;
    color: #ffffff;
    padding: 10%;
    border-radius: 1rem;
    box-shadow: 1px 1px 4px 0px black;
    filter: opacity(-0.5);
    background-color: #ffffff33;
    justify-self: center;
    backdrop-filter: blur(3px);
}

footer {
    margin-bottom: 1vmax;
    width: 100%;
    background: black;
    text-align: center;
}

footer p {
    font-size: 1.2rem;
    font-family: sans-serif;
    text-shadow: 0px 0px 2px white;
}

@media (max-width: 450px) {
    h1 {
        font-size: 2.5rem;
    }

    .bt {
        font-size: 2.2rem;
    }

    footer p {
        font-size: 1rem;
    }
}

@media (min-width:450px) and (max-width:877px) {
    h1 {
        font-size: 3.5rem;
    }

    .bt {
        font-size: 2.7rem;
    }

    footer p {
        font-size: 1.1rem;
    }
}
@media (min-width:900px){
    .bt{
        padding: 5%;
    }
}