#projectBanner {
    opacity: 0.8;
}

#projectVideoContainer {
    width: 100%;
    height: max-content;
}

#projectVideo {
    width: 100%;
    aspect-ratio: 16 / 9;

    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

#projectVideoPlaceHolder {
    width: 100%;
    aspect-ratio: 16 / 9;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

#projectVideoPlaceHolder svg {
    color: var(--gray-600);
}

#projectInfo {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#projectName {
    font-size: 2.5rem;
    font-weight: 800;
}

#projectDescription {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    color: var(--gray-100);
}

#projectDescription ul {
    list-style-type: none;
}

#projectDescription ul li::before {
    content: '\2726';
    font-size: 20px;
    margin-right: 10px;
}


#projectDescription hr {
    border: 1px solid var(--gray-900);
    margin: 1rem 0;
}


#projectLinksContainer {
    display: none;
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

#projectLinksContainer h3 {
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-300);
}

#projectLinks {
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

#projectLinks a {
    padding: 0.5rem 1rem;

    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;

    border-radius: 1rem;

    background-color: rgba(60, 22, 168, 0.2);
    color: var(--purple-300);

    transition: background-color 0.3s, color 0.3s;
    will-change: contents;
}

#projectLinks a:hover {
    background-color: rgba(60, 22, 168, 0.3);
    color: var(--purple-200);
}

#slideDivider {
    display: none;
    border: 1px solid var(--gray-900);
    margin: 1rem 0;
}