#banner
{
    height: 18vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo
{
    height: 20vh;
    width: 20vw;
}

#navigate
{
    height: 10vh;
    width: 100vw;
    position: absolute;
    z-index: 10;
    top: 18vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 16, 16, 0.676);
}

#navigate.fixed {
    position: fixed; /* Becomes fixed when it hits the top */
    top: 0; /* Sticks to the top */
    z-index: 1000; /* Ensure it stays above other elements */
}

.page
{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: aliceblue;
    height: 100%;
    width: calc(100%/8);
    transition: all 0.5s ease;
    text-decoration: none;
}

.page:hover
{
    color: black;
    background-color: aliceblue;
    cursor: pointer;
}

.page.current
{
    color: black;
    background-color: aliceblue;
    cursor: pointer;
}

.smallVid {
    position: relative;
    max-height: 40vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.291);
    text-align: center;
    display: flex;
    justify-content: center;
}

.smallVid video {
    /* transform: translateY(-20vh); */
    object-fit: cover;
}

#cout
{
    height: 6vh;
    width: 14vw;
    border: 3px white solid;
    z-index: 5;
    position: absolute;
    margin-top: 32vh;
    color: white;
    font-family: 'Roboto';
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#cout:hover
{
    cursor: pointer;
    background-color: white;
    color: black;
}

.filter
{
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.699);
    height: 40vh;
    width: 100%;
    color: white;
    font-family: 'Roboto';
    font-size: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
