@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap%27');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600&display=swap%27');
body{
    font-family: 'Lora', serif;
    margin: 0;
    justify-content: center;
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
    background-color: #202426;
}



.container{
    text-align: justify;
    margin: auto;
}

h2{
    text-align: center;
    font-size: 50px;
    color: #fff;
}

#logo{
    float: left;
    max-width: 200px;
    max-height: 80px;
    object-fit: cover;
}


#header{
    text-align: center;
    font-size: 20px;
    height: 80px;
    width: 100%;
    background-color: #fff;
}

#article{
    color: #000;
    width: 75%;
    margin: auto;
    font-size: 19px;
    font-family: 'Lato', sans-serif;
}

#ramka{
    margin: auto;
    background: linear-gradient(45deg, rgb(0,191,255), rgb(255, 255, 255));
    margin-top: 25px;
    border-radius: 20px;
    padding: 60px 30px;
    width: 85%;
}

#footer {
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
    padding: 1% 15%;
    background-color:  #fff;
}


ul{
    float: right;
    padding-right: 20px;

}
h1{
    float: left;
    line-height: 30px;
}

ul > li{
    display: inline-block;
    padding: 5px;
}

li a{
    text-decoration: none;
    color: #000;
    padding: 15px 20px 10px;
    font-family: Nunito,sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .03em;
    padding-bottom: 5px;
    background-image: linear-gradient(    #000, #000);
    background-position: 0 100%;
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition:
      background-size 0.3s,
      background-position 0s 0.3s; 
}

li a:hover {
    background-position: 100% 100%; 
    background-size: 100% 2px;
}