/* Reset some default margins and paddings */
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Styles for the custom buttons */
.custom-button {
    padding: 10px 15px;
    background-color: #797d80f0;
    color: #0a0737;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    transition: background-color 0.3s ease-in-out;
}

.custom-button:hover {
    background-color: #24a8d76f;
}

.button-container {
    text-align: center;
    margin-top: 10px;
}

.custom-button {
    margin: 5px;
    display: inline-block;
}

/* Rest of your CSS styles for form elements, headings, etc. */
h1 {
    color: #0a0737;
    text-align: center;
    margin-top: 70px;
    font-size: 56px; /* You can adjust the font size as needed */

}

label {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 400px;
}

textarea {
    height: 150px;
    width: 400px;
    text-align: center;
}

input[type="submit"] {
    background-color: #0074d9;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.captcha {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.captcha img {
    margin-right: 10px;
    border: 2px solid #0074d9;
    border-radius: 5px;
}

input[type="text"]#captcha {
    width: 150px;
}

/* Add some spacing for better formatting */
p {
    color: #0a0737;
    font-size: 14pt;
    margin-bottom: 20px;
}

/* Additional styles for the Biography page */
.content-container {
    text-align: left; /* Adjust text alignment as needed */
    margin-top: 50px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #0a0737;
    background: transparent; /* Remove background behind text */
    /* Remove these lines to enable scrolling for the entire page */
    /* overflow-y: auto; */
    /* max-height: 70vh; */
}

/* Include any common CSS styles you want to reuse here */

/* Styles specific to the Gallery page */
.gallery {
    text-align: center;
    margin-top: 70px;
}

.gallery img {
    max-width: 100%;
    height: auto;
    display: block; /* Display images as blocks to stack them vertically */
    margin: 0 auto; /* Center align images */
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px; /* Add some margin between images */
}

/* In the Biography page's CSS */
.biography-footer {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15pt;
    padding: 20px 0; /* Adjust the padding value here */
    color: #0a0737;
}

/* Center content vertically on the page */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

.theta-symbol img {
    width: 400px; /* Adjust the width to your desired size */
    height: auto;
    margin: 40px 0;
}

.theta-symbol {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1s ease;
    z-index: -1;
}

h1 {
    text-align: center;
    color: #FFFFFF;
    margin-top: 20px; /* Reduce the margin at the top of the h1 */
    font-size: 56px;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 20px; /* Reduce the margin at the top of the contact form container */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Include any common CSS styles you want to reuse here */
