*{
    font-family: Arial, Helvetica, sans-serif;
    color: #404040;
}
html, body{
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("./assets/bg.jpg") no-repeat;
    background-position: center;
    background-size: cover;
}

#top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
#top *{
    text-align: center;
}

#info {
    display: flex;
    justify-content: left;
    font-size: large;
}
#info ul{
    padding: 0 20px;
    width: 100%;
}

.display{
    font-weight: bold;
}

#input{
    border-radius: 5px;
    height: 30px;
    width: 90%;
    border: 2px solid lightgray;
    display: flex;
    align-items: center;
    outline: none;
    padding: 0 10px;
    transition: all 0.5s;
    font-size: large;
    margin-bottom: 10px;
}

#input:focus{
    border: 2px solid rgb(0, 102, 255);
}

.button {
    padding: 5px 10px;
    text-decoration: none;
    background-color: lightgray;
    border-radius: 4px;
    font-size: large;
}

#main {
    border: 2px solid lightgray;
    padding: 10px 50px;
    border-radius: 8px;
    background: white;
    width: auto;
    max-width: 80% !important;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
}

video{
    max-width: 100%;
    max-height: 90%;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
}

footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #404040;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
footer *{
    color: white !important;
    margin: 7px 0;
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: x-large;
    }
    #info{
        font-size: small;
    }
    #main{
        padding: 5px 20px;
    }
    footer {
        font-size: smaller;
        padding: 5px 0;
    }
    footer *{
        margin: 3px 0;
    }
}