.nav-link-home {
    border-bottom: 1px solid var(--accent);
}

.landing-screen {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;

    gap: 2rem;
}

.landing-video-container {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.landing-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}

@media screen and (min-width: 900px) {
    .landing-screen {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 75vh;
    }
}
