#carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

#header {
    display: flex;
    align-items: left;
    justify-content: left;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    z-index: 20;
}

#logo {
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
}

#tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80vw;
    color: white;
    line-height: 0.8;
    z-index: 10;
    padding: 0 100px;
    box-sizing: border-box;
}

#light-text {
    font-weight: 100;
    font-size: 6vw;
    display: block;
}

#animated-text {
    font-weight: 900;
    font-size: 12vw;
    margin: 0;
}

.nav-item{
    font-size: 2rem;
}

.support-form-container {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.support-form-container h1 {
    text-align: center;
}

.support-form-container form {
    display: flex;
    flex-direction: column;
}

.support-form-container label {
    margin-bottom: 5px;
}

.support-form-container input,
.support-form-container select,
.support-form-container textarea {
    margin-bottom: 20px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.support-form-container button {
    padding: 10px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
