body{
 font-weight: 400;
font-style: normal;
box-sizing: border-box;
margin: 0;
font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.logo{
    width: 50%;
}
.logo img{
    width: 30%;
}
nav{
    display: flex;
    justify-content: center;
    width: 100%;
    max-height: 90px;
    background: #ff0000;
    color: #ffffff;

}
nav ul{
     display: flex;
    align-items: center;
    flex-wrap: wrap;
     gap: 40px;
}
nav ul li{
    display: flex;
    align-items: center;
}
nav ul li a{
    text-decoration: none;
    font-size: x-large;
    text-transform:uppercase ;
    color: #ffffff;
    font-weight: bold
}
.content article a{
    text-decoration: none;
    color: #ff0000;
    font-weight: bold;
}
.banner{
    width: 100%;
}
.content{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px 30px;
}
.content h1{
    color: #ff0000;
    text-align: center;
}
footer{
display: flex;
text-align: center;
justify-content: center;
color: #000000;
font-weight: bold;
}
.banner img{
    width: 100%;
}

@media screen and (max-width: 640px) {
    body {
        font-size: 100%;
    }
    .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav{
    display: none;
}
.logo img {
    width: 50%;
}
}