/* Style for the video background */
.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: auto;
}

/* Style for the logo */
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.logo img {
    height: 180px; /* Adjust as needed */
}
/* Basic reset for styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif; /* Example font */
  }
  
  /* Style for the header */
  header {
    color: white;
    padding: 20px 0; /* Spacing above and below the navigation links */
  }
  
  /* Container to align content to the center */
  .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Navigation styling */
  nav {
    text-align: right; /* Aligns the navigation to the right */
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    padding: 8px 16px; /* Spacing around the text */
    transition: color 0.3s ease-in-out;
  }
  
  /* Hover effect for nav links */
  nav a:hover {
    color: #deb887; /* Lighter color when hovering over the link */
  }
  
  /* Current page link styling */
  nav a.current {
    color: #deb887;
    border-bottom: 3px solid #deb887; /* Underline effect for the current page */
  }
  
/* Style for the content */
.content {
    position: relative;
    width: 80%;
    margin: auto;
    margin-top: 180px; /* Adjust as needed */
    text-align: center;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.333); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.embedded-video {
    margin-top: 20px;
}

/* Style for the email link */
.email-link {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #ddd;
}

.email-link a {
    color: #4CAF50; /* Adjust color as needed */
    text-decoration: none;
}

.email-link a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .content {
        width: 95%;
        margin-top: 100px;
    }
}
