body,
html {
    margin: 0;
    width: auto;
    height: auto;
}

img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#container {
    background-color: white;
    border-radius: 0.8em;
    width: 20%;
    height: 32%;
    position: absolute;
    top: 24%;
    left: 21%;
}

span {
    color: rgb(12, 177, 176);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

a {
    text-decoration: none;
    display: flex;
}


/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
    #container {
        border-radius: 0.8em;
        width: 70%;
        height: auto;
        position: absolute;
    }

    span {
        color: rgb(12, 177, 176);
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

