@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freckle+Face&display=swap');

html, body {
    width: 100vw;
    height: 100vh;
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("https://telegra.ph/file/b0583c176e4466147473a.png");
    background-size:cover;
    background-position: center;
    
}

header {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
  }

  .logo{
    width: 10rem;
}

.GetHelp{
    border: 0;
    width: 8rem;
    height: 3.0rem;

    background-color: #FDC309;
    border-radius: 1.25rem;
    font-weight: bold;
    font-size: 1rem;
    color: #5E4400;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  
  
  }
  
  /* Hover effect */
  .GetHelp:hover {
    background-color: wheat; /* Move the button up slightly on hover */
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.3); /* Increase shadow size on hover */
  }
  
  /* Active effect */
  .GetHelp:active {
    transform: translateY(3px); /* Move the button down slightly when clicked */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); /* Decrease shadow size when clicked */
  }

  nav button{
    border: none;
    background-color: transparent;
    font-size: 1rem;
    margin: 20px;
    font-weight: bold;
    color: white;
    padding: 7px 15px;
    border-radius: 50px;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  nav button:hover{
    border: none;
    background-color:#FDC309;
    font-size: 1.125rem;
    margin: 20px;
    font-weight: bold;
    color: #5E4400;
    padding: 7px 15px;
    border-radius: 50px;
    box-shadow: none;
  }

  section p {
    font-family: "Freckle Face", system-ui;
    color: white;
    font-size: 10rem;
    text-align: center; 
    line-height: 0.8; 
    margin-top: 6vh; 
    animation: slideInFromBottom 1.5s ease forwards;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes appearAnimation {
    from {
        opacity: 0; /* Start with buttons hidden */
        transform: translateY(20px); /* Move buttons down slightly */
    }
    to {
        opacity: 1; /* Make buttons fully visible */
        transform: translateY(0); /* Move buttons back to their original position */
    }
}

.buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: -100px;
    animation: appearAnimation 1s forwards;
}

.buttons button {
    background-color: #C7FF8F;
    font-size: 1rem;
    width: 20rem;
    font-weight: bold;
    color:#075d18;
    padding: 10px 20px;
    border: 5px;
    border-color: #00360b;
    border-radius: 0.5rem;
    margin: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);


    transition: background-color 0.75s ease;
}

.buttons button:hover {
    background-color: #075d18;
    color: #C7FF8F;
    border-color:#C7FF8F;
}

.buttons button:active {
    transform: translateY(-1px); /* Move button up slightly on hover for 3D effect */
}


