html{
    margin: 0px 20%;
    font-family: 'Oswald', sans-serif;
}
body{
    padding-bottom: 20px;
}
h1{
    text-align: center;
    font-size: 36px;
}
h2{
    text-align: center;
    font-size: 18px;
}
span{
    text-align: right;
    float: right;
}
ul{
    padding: 0;
    list-style-type: none;
    font-size: 18px;
}
li{
    padding: 5px;
}
li:nth-child(odd){
    background: rgba(0, 0, 0, 0.16);
}
input{
    font-size: 18px;
}
input[type=text]{
    width: 70px;
}
.login{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
@media(max-width: 768px){
    html{
        margin: 0;
    }
    h1{
        font-size: 24px;
    }
    h2{
        font-size: 14px;
    }
    ul{
        font-size: 14px;
    }
    input{
        font-size: 14px;
    }
}
@media print {
    li:nth-child(odd){
        background: rgba(0, 0, 0, 0.16);
    }
}