*{
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;
}

body{
    background-image: url('../img/5317656.webp');
    background-size: cover;
    background-position: center;
    font-family: 'Roboto';
}

i{
    font-size: 20px;
    vertical-align: middle;
}

main{
    background-color: rgba(255,255,255,.7);
    height: 100%;
    width:100%;
}

main header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    margin-bottom:20px;
}

main header img{
    width: 50%;
    max-width: 225px;
}

nav{
    background-color: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

nav ul{
    list-style-type: none;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul li{
    margin: 10px 0;
    width: 100%;
}

nav ul li.small{
    width: 20%;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    background-color: #AE890B;
    padding: 10px 0;
    border-radius: 10px;
    width: 100%;
    transition: .4s;
}

nav ul li a:hover{
    background-color: #9c7a07;
}

footer{
    width: 100%;
    position: fixed;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 35px;
    font-size: 13px;
    color: #a7a7a7;
}

footer a{
    color: #a7a7a7;
}

@media screen and (max-width:400px){
    nav ul li{
        margin: 6px 0;
        width: 100%;
    }
}

@media screen and (max-height: 500px){
    main header{
        margin-bottom: 0px;
    }

    nav ul li a{
        padding: 6px 0;
        font-size: 14px;
    }

    footer{
        font-size: 10px;
        bottom: 10px;
    }
}