/* nstyle.css */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #ffffff;
    opacity: 0;
    animation: fadeIn 0.2s ease-out forwards;
    overflow: hidden;


}


header {

  display: flex;
  flex-direction: column;
margin-bottom: auto;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 0 20px 0 20px;
text-align: center;


}

section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 50vh;
    flex: 1 1 33.3%;
}

@media screen and (max-width: 600px) {
    section {
        flex-direction: column;
        gap: 20px;
        padding-top: 40px;
    }
}



h1 {
  color: #764834;
  font-family: 'Poppins', sans-serif;
  
  margin-block-start: 0.5em;
  margin-block-end: 0em;
  
}

h2 {
  color: #764834;
  font-family: 'Poppins', sans-serif;
  
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

h3 {
  color: #764834;
  font-family: 'Poppins', sans-serif;
  
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}


@media screen and (max-width: 768px){
  
  h1 {
    color: #764834;
    font-family: 'Poppins', sans-serif;
    
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    
  }
  
  h2 {
    color: #764834;
    font-family: 'Poppins', sans-serif;
    
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
  }
  
  h3 {
    color: #764834;
    font-family: 'Poppins', sans-serif;
    
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
  }
}



.logo img  {
  
  margin-top: 20px;
    width: 200px;
 
    
    
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  body.fade-out {
    animation: fadeOut 0.2s;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s linear;
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

.gradient-button{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: #764834;
    border-radius: 20px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 20px;
    transition: all 0.2s ease;
}



.gradient-button2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: #764834;
    border-radius: 20px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 20px;
    transition: all 0.2s ease;
}

.gradient-button:hover {

    scale: 1.03;
box-shadow: 
inset 1px 1px 1.5px rgb(255, 255, 255),
        10px 10px 18px rgba(118, 72, 52, 0.3),
        -1px -1px 2px rgba(255, 255, 255, 0.5);
transition: all 0.2s ease;

}

.gradient-button2:hover{
scale: 1.03;
box-shadow: 
inset 1px 1px 1.5px rgb(255, 255, 255),
        10px 10px 18px rgba(118, 72, 52, 0.3),
        -1px -1px 4px rgba(255, 255, 255, 0.5);
transition: all 0.2s ease;
}


.gradient-button .icon, .gradient-button2 .icon {
    position: relative;
    left: auto;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-button .icon svg, .gradient-button2 .icon svg {
    width: 100%; /* Adjust SVG width */
    height: 100%; /* Adjust SVG height */
}

.gradient-button span, .gradient-button2 span {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 15px;
}
