* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins.zip', sans-serif;
}
h2 {
    font-size: 30;
    font-family: 'Poppins.zip', sans-serif;
    text-align: center;
}
body{
    font-size: 20px;
    padding-bottom:200px;
    font-family: 'Poppins.zip', sans-serif;
    text-align: center;
    background: linear-gradient(
        rgba(230, 190, 123, 0.6),
        rgba(237, 180, 88, 0.6),
        rgba(155, 117, 60, 0.6),
        rgba(166, 82, 30, 0.6) 
    );
}
header{
    border-color: #c9a371;
    border-width: 8px;
    border-style: solid;
    position: fixed;
    top:0;
    z-index: 9999;
    left:0;
    width:100%;
    align-items: center;
    justify-content: space-between;
    width:100%;
    background-color: #3e5737;
    padding:0.5rem 2rem;
    height:110px;
    display: flex;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background: linear-gradient(
        #3b5435,
        #3b5435
    );
}
.header-title{
    font-size: 4rem;
    font-weight: 600;
    color:#eccc85;
    line-height: 1;
    font-family: 'Poppins.zip', sans-serif;
    text-align: center;
}
.header-tabs a{
    padding-bottom:6px;
    font-size: 2rem;
    padding:0.3rem 0;
    font-family: 'Poppins.zip', sans-serif;
    transition:0.2 ease;
    border-bottom: 2px solid transparent;
    color: #c6ab6e;
}
.header-tabs a.active{
     border-bottom: 2px solid #645017;
     font-weight: 600;
}
.home-info{
    margin-top:120;
}
nav a:hover,
nav a.active {
    color:rgb(239, 173, 60);
    border-bottom: 3px solid green;
}
.header-tabs{
    display:flex;
    gap:2rem;
}

 p {
    color: rgb(137, 93, 81);
    font-size: 36px;
    font-family: 'Poppins.zip', sans-serif;
    
 }
 h2 {
    color: rgb(99, 62, 51);
    font-size: 42px;
    font-family: 'Poppins.zip', sans-serif;
 }
.container {
    display: flex;
    flex-direction: row;      
    flex-wrap: wrap;          
    gap: 2rem;
    justify-content: center;   
    align-items: flex-start;  
    width: 90%;                
    max-width: 1400px;
    margin: 0 auto;
}


.container div {
    min-height: 150px;
    min-width: 200px;
    border-color: #3b5435;
    border-width: 12px;
    border-style: solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: linear-gradient(
        rgba(206, 140, 90, 0.6),
        rgba(165, 100, 60, 0.6)
    );
.container div:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}   
    color: white;
    font-size: 1.3rem;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(4px); 
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    align-items: center;
    font-family: 'Poppins.zip', sans-serif;
}