body {
    display: flex;
    font-family: "Papyrus", sans-serif;
    background-image: url("IMG_0264.jpeg");
    background-size: cover;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: whitesmoke;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#login {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    height: 50vh;
    width: 25vw;
    margin: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

h1 {
    margin-top: 10vh;
    font-size: 5rem;
}

.inputs {
    background-color: transparent;
    color: whitesmoke;
    border: 0;
    border-bottom: 2px solid whitesmoke;
    width: 70%;
    font-size: 2vh;
    margin-top: 5vh;
}

.butt {
    background-color: transparent;
    border: 0;
    color: whitesmoke;
    font-size: 2vh;
    padding: 1vh;
    padding-left: 2vw;
    padding-right: 2vw;
    margin-top: 2vh;
}

.butt:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

#play-button {
    margin-top: 75px;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 10px;
    border: 0;
    background-color: red;
    font-size: larger;
    color: whitesmoke;
}

#play-button:hover {
    border: 1px solid black;
}

#ah {
    display: none;
    color: red;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        margin-top: 150px;
    }

    #play-button {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: medium;
    }

    #login {
        width: 70vw;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        margin-top: 100px;
    }

    #play-button {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        font-size: small;
    }
}
