body{
    width: 100%;
    margin: 12px;
}

nav{
position: sticky;
top: 10px;
background-color: rgb(146, 140, 140);
}


nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px; 
    margin: 15px; 
    
}

nav li {
    padding: 10px 20px;
    line-height: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease; 
    cursor: pointer; 
    
}

nav li:nth-child(3) {
    font-size: 35px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    transition: transform 0.3s ease, color 0.3s ease; 
    
}


nav li:hover {
    transform: scale(1.1); 
    background-color: #f0f0f0; 
    border-radius: 10px; 
}
    
h1 {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 55px;
  }

header h1{
    text-align: center;
    margin-top: 25px;
}

header img{
    width: 100%;
}

main{
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    width: 100%;
}

section{
    height: 575px;
    border: solid;
    border-radius: 25px;
    border-width: 3px;
    padding: 8px;
    margin: 12px;
    background-color: rgb(250, 238, 223);
    border-color: white;
}
section h3{
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 30px;
}

section img{
    padding: 8px;
}

section p{
    grid-column-start: 1;
    text-align: left;
    font-size: 18px;
    padding: 8px;

}

article{
    grid-column-start: 2;
    border: solid;
    border-radius: 25px;
    border-width: 3px;
    padding: 8px;
    margin: 12px;
    background-color: rgb(250, 238, 223);
    border-color: white;
}

article h3{
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 30px;
}

article img{
    padding: 8px;
}

article p{
    grid-column-start: 2;
    text-align: left;
    font-size: 18px;
    padding: 8px;
}

h4{
    font-family: "Bebas Neue", serif;
    text-align: center;
    font-size: 25px;
}

footer{
    background-color:burlywood;
}

footer p{
    text-align: center;
}

footer h3{
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif
}







  



