  /* Popup styling */
    #popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    #popup-content {
      background: white;
      padding: 20px;
      max-width: 400px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease;
    }

    #popup button {
      margin-top: 15px;
      padding: 8px 16px;
      border: none;
      background-color: #ff6347;
      color: white;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
body {
    font-family: calibri, sans-serif;
    background-color: #fffaf3;
    color: #333;
    line-height: 1.6;
    padding: 10px;
  }
input {
   height: 25px;
    width: 300px;
border: black solid 2px;
}
textarea {
    height: 60px;
    width: 300px;
border: black solid 2px;
}
input:focus {
  border-radius: 2px;
  border-color: red;
  outline: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 35px;
  width: 320px;
}
textarea:focus {
   border-radius: 2px;
  border-color: red;
  outline: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 70px;
  width: 320px;
}
form{
  width: 80vw;
  max-height: 500py;
  margin: auto;
  padding: 20px;
  background-color: #fffaf3;
display: flex;
flex-direction: column;
gap: 10px;
justify-content: center;
align-items: center;
box-shadow: 4px 7px 10px  #e69500;
}
label{
  display: inline-block;
  font-size: large;
}
  
  h3 {
    text-align: center;
  }


  footer {
    text-align: center;
    margin-top: 30px;
    color: black !important;
    background-color: white;
    border-radius: 15px;
    height: 20vh;
    width: 95vw;
  }
button {
  background-color: #fe4401;
  color: white;
   border-radius: 5px;
  width: 150px;
  height: 25px;
  transition: transform 0.5s ease, background-color 0.5s ease;
}
 header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffd9a0;
    border-radius: 8px;
        display: flex;
  flex-direction: row;
     max-height: 180px;
  }

  nav {
    display: flex;
    margin-bottom: 30px;
    list-style: none;
    font-weight: bold;
    padding: 0;
      flex-direction: column;
      align-items: center;
  }
  button:hover {
background-color: #f9b500;
 border-radius: 30px;
    width: 150px;
    height: 35px;
    cursor: pointer;
box-shadow: 0px 6px 10px black;
  }

    .page-nav {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .page-nav a {
      text-align: center;
      display: flex;
      flex-direction: column;
      text-decoration: none !important;
      color: black;
      font-family: calibri, sans-serif;
    }
    .page-nav a:hover {
      color: orange;
      text-decoration: none;
      transform: scale(1.05);
    }

    a {
      text-decoration: none;
    }
  





