:root {
    --main-yellow: #f3d000;
    --dark-yellow: #d1b200;
    --complimentary-blue: rgb(3, 53, 54);
    --complimentary-blue-trans: rgba(3, 53, 54, 0.7);
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

#background-video-container {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#background-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    right: 0;
}

#backdrop {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

#center-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    height: fit-content;
    padding: 1vw;
    background-color: var(--complimentary-blue-trans);
    align-content: center;
}

#logo {
    max-width: 90%;
    max-height: 20%;
    object-fit: scale-down;
    object-position: center;
    margin: auto;
    margin-bottom: 4vh;
    margin-top: 2vh;
    display: block;
}

.images-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.image-container {
    height: 400px;
    width: 300px;
    background-size: cover;
    margin: 20px;
    position: relative;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--complimentary-blue);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    position: relative;
    bottom: -360px;
}

.active,
.dot:hover {
    background-color: var(--main-yellow);
}


/* .multiple {
    transition-duration: 0.3s;
    position: absolute;
}

.multiple:hover {
    opacity: 0;
}

.multiple:hover+.sub {
    display: block;
}

.sub {
    position: relative;
    display: none;
    top: 0;
    right: 0;
} */

@media screen and (max-width: 800px) {
    #center-panel {
        width: 100%;
        padding: 0;
        position: relative;
    }
    #logo {
        content: url("logo-alt2.png");
        max-width: 70%;
        align-self: center;
        max-height: none;
    }
}