.success {
    color: green;
}
.error {
    color: red;
}


body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}
h1 {
    font-size: 2.5em;
}
p {
    font-size: 1.2em;
}
footer {
    font-size: 0.8em;
    font-style: italic;
}
.content {
    margin: 40px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* Initially hide all videos */
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.dropdown, .button, .submit_button {
    margin: 10px;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 9px;
}

.button {
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: darkblue;
}

.icon-button {
    width: 1in;
    height: 1in;
    border: 2px solid black;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    margin: 0 auto; /* Centers horizontally */
}
.icon-button img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.submit_button {
    background-color: green;
    color: white;
    border: none;
    cursor: pointer;
}

.submit_button:hover {
    background-color: darkgreen;
}

.chevron-down {
    display: inline-block;
    margin-top: 1rem;
    font-size: 2.5rem;
    color: white;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Optional: Smooth scrolling for the whole page */
/* html {
    scroll-behavior: smooth;
} */