* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --dark-green: #19381f;
    --medium-green: #53A548;
    --light-green: #91CB3E;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: london;
    src: url(../London\ Bridge\ Font\ Family.otf);
}

@font-face {
    font-family: trap;
    src: url(../Trap_/Trap_V1.1/Trap-Black.otf);
}

.menu-icon {
    display: none;
}

.slide-ctn {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem;
    width: 50vw;
    height: 100vh;
    background-color: white;
    z-index: 4;
}

.slide-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 2rem;
}

.logo-img {
    width: 40px;
}

.close-slide {
    width: 40px;
    cursor: pointer;
}

.slide-nav {
    text-decoration: none;
    color: var(--dark-green);
    font-family: london;
    font-size: 1.2em;
    transition: 0.3s ease-in-out;
}

.slide-nav:nth-child(2) {
    color: var(--light-green);
}

.slide-nav:hover {
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.8rem 1rem;
    background-color: white;
    z-index: 5;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navlink {
    text-decoration: none;
    font-family: london;
    font-weight: 100;
    color: var(--light-green);
    border: 1px solid var(--light-green);
    padding: 0.2rem 1rem;
    border-radius: 15px;
}

.logo {
    font-size: 1.8em;
    font-style: 800;
    font-family: trap;
    text-decoration: none;
    color: var(--dark-green);
}

.videos-ctn {
    padding: 2rem 1rem;
}

.vid-title {
    font-family: "Inter", serif;
    font-weight: 800;
    text-align: center;
    padding: 1rem;
}

.videos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.video {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.yt-vid,
.braille-table {
    width: 90%;
    aspect-ratio: 2/1;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.arrow {
    /* max-width: 30px; */
    width: 5%;
}

.video:nth-child(2)>.arrow {
    width: 15%;
}

.brief-info {
    font-family: london;
    padding: 1rem 4rem;
    color: var(--dark-green);
}

.v-bold {
    font-size: 1.5em;
}

.p-link {
    text-decoration: none;
    color: var(--light-green);
}

.p-link:active {
    color: var(--medium-green);
}

@media (max-width: 525px) {
    .nav-right {
        display: none;
    }

    .menu-icon {
        display: flex;
        width: 40px;
        cursor: pointer;
    }
}