body {
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    padding-top: 20px;
    z-index: 0;
}

.NavBarSection {
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
}

.NavBar {
    font-size: 15px;
    font-weight: 100;
    background-color: #121212;
    position: fixed;
    width: 95.5%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    z-index: 10;
    margin-top: 10px;
    border-radius: 10px;
}

.NavBarName {
    font-size: 20px;
    text-align: center;
    z-index: 2;
    padding-left: 10px;
}

.NavBarList {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-right: 20px;
    z-index: 2;
}

.NavBarListText {
    font-size: 20px;
    text-align: center;
    z-index: 2;
    margin: 0;
}

.HamburgerMenu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-right: 20px;
}

.Drawer {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #121212;
    transition: left 0.3s ease;
    z-index: 20;
}

.DrawerList {
    margin-top: 50px;
    padding-left: 20px;
}

.DrawerList h3 {
    margin-bottom: 20px;
    color: white;
}

@media (max-width: 810px) {
    body {
        padding-top: 5px;
    }

    .NavBar {
        margin-top: 5px;
    }

    .NavBarList {
        display: none;

    }

    .HamburgerMenu {
        display: block;
    }

    .Drawer.open {
        left: 0;
    }
}

.NameDiv {
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    height: 97vh;
    width: 100%;
    overflow: hidden;
}

.MainPageVideo {
    position: absolute;
    width: 97.5vw;
    height: 97vh;
    object-fit: cover;
    z-index: -1;
    border-radius: 10px;
}

.Name {
    font-size: clamp(40px, 10vw, 100px);
    text-align: center;
    z-index: 2;
    margin: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.NameParagraph {
    max-width: 900px;
    font-size: clamp(15px, 3vw, 20px);
    text-align: center;
    z-index: 2;
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 810px) {
    .Name {
        margin-left: 10px;
        margin-right: 10px;
    }

    .NameParagraph {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.About {
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.AboutName {
    font-size: clamp(40px, 10vw, 80px);
    text-align: center;
    z-index: 2;
}

.AboutParagraph {
    max-width: 900px;
    font-size: clamp(15px, 3vw, 20px);
    text-align: center;
    z-index: 2;
    padding-bottom: 20px;
}

.IconContainer {
    background-color: transparent;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.Icon {
    height: 100px;
    background-color: #121212;
    padding: 5px;
    border-radius: 30px;
}

@media (max-width: 810px) {

    .AboutParagraph {
        margin-left: 10px;
        margin-right: 10px;
    }

    .IconContainer img:nth-child(2) {
        order: 1;
    }

    .IconContainer img:nth-child(3) {
        order: 2;
    }

    .IconContainer img:nth-child(4) {
        order: 3;
    }

    .IconContainer img:nth-child(1) {
        order: 4;
    }

    .IconContainer img:nth-child(5) {
        order: 5;
    }
}

.Container {
    background-color: #121212;
    padding: 5px;
    border-radius: 10px;
}

.Video {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
}

.VideoName {
    color: white;
    font-size: clamp(40px, 10vw, 80px);
    text-align: center;
    z-index: 2;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.VideoList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
}

.VideoPageVideo {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 810px) {
    .VideoList {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }
}

.Thumbnails {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    margin-top: 100px;
}

.ThumbName {
    color: white;
    font-size: clamp(25px, 10vw, 80px);
    text-align: center;
    z-index: 2;
}

.ThumbList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
}

.ThumbPageThumb {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 810px) {
    .ThumbList {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }
}

.Shorts {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    margin-top: 100px;
}

.ShortsName {
    color: white;
    font-size: clamp(40px, 10vw, 80px);
    text-align: center;
    z-index: 2;
}

.ShortsList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.ShortsPageVideo {
    max-height: 800px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.ParagraphContainer {
    height: 100%;
    width: 100%;
    max-width: 800px;
    min-width: none;
    background-color: transparent;
    border-radius: 10px;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.ParagraphContainer p {
    justify-content: center;
    align-content: center;
    text-align: center;
    align-items: center;
    font-size: clamp(20px, 3vw, 30px);
}

@media (max-width: 810px) {
    .ShortsList {
        display: flex;
        flex-direction: column;
    }

    .ShortsList .Container,
    .ShortsList .ParagraphContainer {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Reorder elements */
    .ShortsList .Container:nth-child(1) {
        order: 1;
    }

    .ShortsList .ParagraphContainer:nth-child(2) {
        order: 2;
    }

    .ShortsList .Container:nth-child(4) {
        order: 3;
    }

    .ShortsList .ParagraphContainer:nth-child(3) {
        order: 4;
    }

    .ShortsList .Container:nth-child(5) {
        order: 5;
    }

    .ShortsList .ParagraphContainer:nth-child(6) {
        order: 6;
    }

    .ShortsList .Container:nth-child(8) {
        order: 7;
    }

    .ShortsList .ParagraphContainer:nth-child(7) {
        order: 8;
    }
}

.LetsTalkSection {
    width: 100%;
    display: flex;
    justify-content: center;
}

.LetsTalk {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 20px;
    background-color: #121212;
    border-radius: 30px;
}

.LetsTalkName {
    color: white;
    font-size: clamp(30px, 10vw, 100px);
    text-align: center;
    z-index: 2;
    margin: 0;
    margin-top: 100px;
}

.LetsTalkHR {
    width: 80%;
    border-color: #121212;
}

.LetsTalkList {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    flex-wrap: wrap;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    box-sizing: border-box;
    color: white;
    margin-bottom: 100px;
}
.LetsTalkList h4{
    color: white;
}
.LetsTalkListText {
    margin: 0;
    text-align: center;
    font-size: clamp(15px, 3vw, 20px);
}

.LetsTalkListList {
    background-color: transparent;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    color: white;
}

@media (max-width: 810px) {
    .LetsTalk {
        margin-top: 20px;
        width: 95%;
    }

    .LetsTalkListList {
        flex-direction: column;
    }

    .LetsTalkList {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }
}

.RestVideoContainer {
    background-color: #121212;
    padding: 5px;
    border-radius: 10px;
}

.RestVideo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
}

.RestVideoName {
    color: white;
    font-size: clamp(40px, 10vw, 80px);
    text-align: center;
    z-index: 2;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.RestVideoList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
}

.RestVideoPageVideo {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 810px) {
    .RestVideoList {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Loading animation */
.About,
.Videos,
.Shorts {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.About.in-view,
.Videos.in-view,
.Shorts.in-view {
    opacity: 1;
}

.LetsTalkListText a,
.NavBarList a,
.DrawerList a,
.NavBar a {
    text-decoration: none;
    color: inherit;
}

.LetsTalkListText a:hover,
.NavBarList a:hover,
.DrawerList a:hover,
.NavBar a:hover {
    color: #ff0000;
}


/* Basic styling for modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 5;
    padding-top: 150px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 150px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.modal {
    display: none;
    position: fixed;
    z-index: 5;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}