*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
  font-family: Arial, Helvetica, sans-serif;
  max-width: 1000px;
  margin: 0 auto;

   


}
header{
    background-color: #454f6f;
    color: white;
    padding: 20px 0;
    margin: 20px ;
   text-align: center;
   margin-bottom: 20px;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 10;
  
   
}

header nav a{
    color: white;
    text-decoration: none;
    margin: 0 30px;
    

}
.hero{
    background-color: #e6834c;
    text-align: center;
    padding: 20px;
    height: 300px;
    position: relative;
    text-shadow: 1px 1px 5px black;
   
  
   margin: 40px 40px  ;
   border-radius: 9px;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   line-height: 1.6;
   color: white;
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   

    
}
.hero h1{
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
}

.about{
    
    background-color: #c7f2f2;
    padding: 20px;
    text-align: center;
    margin: 20px ;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    line-height:1.6;
  


}


.hero button{
    background-color: #454f6f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;  
    
}

.articles{
    display: flex;
    justify-content: center;
    gap: 10px;
  

}
.article{
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 20px;
  

}
.article p{
    margin-top: 10px;
}

.menu{
    margin: 20px;
   
    padding: 20px;
    display: grid;
    justify-content: center;
    gap: 100px;
    grid-template-columns: repeat(2, 1fr);
}

footer{
    background-color: #454f6f;
    color: white;
    padding: 20px ;
    margin: 20px 0;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    
    left: 20px;
    width: 100%;
    z-index: 10;


}
.footer-content{
    display: flex;
    justify-content: space-between;
    color: white;
    margin: 20px;
    
}
footer nav a{
    text-decoration: none;
    color: white;
    margin: 0 15px;
}
.copy{
    text-align: center;
    background-color: #e6834c;
    padding-bottom: 20px ;
    
}