  body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #3a5569, #4e6c86); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

@media screen and (max-width: 1100px) {
    /* Move the h1 title down a bit */
    h1 {
      margin-top: 50px;
    }

    /* Make the YouTube video narrower */
    iframe {
      width: 80%; /* Set the width to 80% of the container */
    }
  }

  /* Style the heading */
  h1 {
    color: rgba(255, 255, 255, 0.7); /* Text color */
    text-align: center; /* Center the heading */
    font-size: 40px; /* Larger font size */
    margin-top: 90px;
    margin-bottom: 20px; /* Spacing below the heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
      animation: slideDown 2s ease; /* Add slide down animation */
  }
  h2 {
    color: rgba(255, 255, 255, 0.7); /* Text color */
      text-align: center; /* Center the heading */
    font-size: 30px; /* Larger font size */
    margin-bottom: 30px; /* Spacing below the heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
      animation: slideDown 2s ease; /* Add slide down animation */
  }
  p {
    color: rgba(255, 255, 255, 0.9); /* Text color */
    font-size: 20px; /* Larger font size */
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 30px; /* Spacing below the heading */
    padding: 15px 30px; /* Increase padding for larger buttons */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
    max-width: 600px; /* Limit the width of the text */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Add transition effect */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    border: 2px solid white; /* White border */
    border-radius: 30px; /* Add border radius */
    border-color: transparent;
      animation: slideDown 2s ease; /* Add slide down animation */
  }

  /* Style the buttons */
  .buttons {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange children in a column */
    align-items: center; /* Center buttons horizontally */
      animation: slideDown 2s ease; /* Add slide down animation */
  }
    iframe {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 30px; /* Increase padding for larger buttons */
    border: 2px solid white; /* White border */
    border-radius: 30px; /* Add border radius */
    border-color: transparent;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    }
    /* Add hover effect to button */
  .button:hover {
    /*background-color: rgba(255, 255, 255, 0.3); /* Light background color */
    color: white; /* Change text color */
    border-color:rgba(100, 255, 180, 1);
    text-shadow: 0 5px 15px rgba(100, 255, 0, 1);
    box-shadow: 0 5px 15px rgba(100, 255, 0, 1);
  }
    .button2:hover {
    background-color: rgba(255, 255, 255, 0.5); /* Lighter background color on hover */
}

  /* Style the button */
  .button {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  color: white; /* Text color */
  border: none; /* Remove border */
  border-radius: 30px; /* Add border radius */
  padding: 15px 30px; /* Increase padding for larger buttons */
  margin: 10px 0; /* Margin between buttons */
  font-size: 24px; /* Larger font size */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Add transition effect */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add shadow */
  animation: slideDown 2s ease; /* Add slide down animation */

}
    .links {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 40px; /* Add padding for spacing */
    border-radius: 10px;
    margin-top: 20px; /* Adjust margin-top for better positioning */
    text-align: center; /* Center align the content */

}

    .button2 {
    background-color: none; /* Light background color */
    color: rgba(0, 0, 0, 0.8); /* Text color */
    padding: 10px 20px; /* Adjust padding for better button size */
    margin: 10px; /* Add margin for spacing between buttons */
    font-size: 20px; /* Larger font size */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Add transition effect */
    cursor: pointer; /* Change cursor to pointer on hover */
}
    .iframe {
        border: none; /* White border */
    border-radius: 30px; /* Add border radius */
    }

  .navbar a:hover {
    color: rgba(255, 255, 255, 0.9); /* Slightly brighter text */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6); /* Wider glow effect */
    transition: color 0.3s ease, text-shadow 0.3s ease-in-out; /* Quick light-up */
}

/* Add a gradient border effect on hover */
.navbar a:hover::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    width: 100%; /* Expand background to full width */
}
    .button2:hover {
    background-color: rgba(255, 255, 255, 0.5); /* Lighter background color on hover */
}


  /* Add loading animation effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }

  /* Align photo and text */
  .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .photo {
    margin-right: 20px;
  }

  /* Responsive layout */
  @media screen and (max-width: 600px) {
    .container {
      flex-direction: column;
    }
    .photo {
      margin-right: 0;
      margin-left: 110px;
        margin-top: -20px;
        margin-bottom: -20px;
    }
  }
    /* CSS styles */
@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}