body {
    background-color: #007e7e;
}

.contact-section {
    opacity: 1;
}

.video-section {
    width: 100%;

    margin-top: 50px;

    display: grid;
    grid-template-columns: 1.5fr 1fr;

    padding: 2vw;
    column-gap: 2vw;

    box-sizing: border-box;

    min-width: 0;
}

.video {
    margin-bottom: 30px;
    width: 100%;
    aspect-ratio: 16 / 9;

    min-width: 0;
}

.credits {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.video-title {
    font-size: clamp(30px, 5vw, 50px);
}

.video-author {
    font-size: clamp(20px, 3vw, 50px);
    color: #005858;
    font-family: Unageo-Bold;
}

.video-roles {
    border: 2px solid white;
    width: fit-content;
    padding: 5px;
    font-size: clamp(15px, 4vw, 24px);
    margin-top: 30px;

    color: white;
}

.video-desc {
    color: white;
    margin-top: 25px;

    font-size: clamp(18px, 2vh, 30px);

    min-width: 0;

    margin-bottom: 5vh;
}

@media (max-width: 1000px) {
    .video-section {
        grid-template-columns: 1.5fr;
    }

    .video {
        margin-top: 5vh;
    }
}