html{
    overflow:hidden;
}
body{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    height: 90vh;
    width: 90vw;

    margin: 5vh 5vw;

    background-image: linear-gradient(#000f63, #850000);
    color: #EEE;
}
h1, h2, span, input, button, div{
    font-family:monospace;
}
h1{
    font-size: 20px;
}
a{
    display: block;
    color: #EEE;
    text-decoration: none;
    font-family:monospace;
    font-size: 24px;
    transition: 200ms ease-in-out;
}
a:hover{
    transform: scale(1.1);
}
span{
    background-color: black;
    padding: 10px 0;
    width: 350px;

    border: 2px double white;
}
#content{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;

    height: 75%;
    width: 75%;

    font-size: 20px;

    border-radius: 16px;
    background-color: rgba(7, 0, 66, 0.2);
    backdrop-filter: blur(26px);
    box-shadow: 0 0 30px #ffffff;
    padding: 20px;
}
input, button{
    text-align: center;
    width: 350px;
    border-radius: 8px;
    border: none;
    font-size: 24px;

    transition: 200ms ease-in-out;
}
input:focus{
    box-shadow: 0 0 15px #ffffff;
}
button{
    background-color: darkseagreen;
}
button:hover{
    cursor: pointer;
    box-shadow: 0 0 15px #40ff9f;
}

@media only screen and (max-width: 992px) {
    body{
        height: 100vh;
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    #content{
        height: 100%;
        width: 100%;
        margin: 0;
    }
}