html, body {
    overflow-x: hidden;
}
body {
    background-color: transparent;
}
.content-wrapper {
    position: relative;
    z-index: 0;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: fill;
    
}
.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.text-shade {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
}

.profile-img img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
}

.form-floating > .inquiry {
    height: 150px;
}
@media (min-width: 768px) {
    .profile-about-row {
        perspective: 1000px;
    }
    .profile-img {
        position: relative;
        z-index: 2;
        transform: translateZ(60px);
    }
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 24px;
}
.footer-text {
    color: gray;
    margin: 0;
    text-align: left;
}
.social_icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.social_icon {
    height: 28px;
    width: 28px;
    object-fit: contain;
}
@media (max-width: 480px) {
    .site-footer {
        justify-content: center;
        text-align: center;
    }
    .social_icons {
        justify-content: center;
    }
}

.announcements {
    padding: 24px 0;
}
.viral-video {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.announcement-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.announcements h2 {
    margin: 0;
    text-align: right;
}
.announcements-frame {
    width: 267px;
    max-width: 100%;
    aspect-ratio: 267 / 591;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 576px) {
    .announcements {
        flex-direction: column;
    }
}
