@import url("https://fonts.googleapis.com/css?family=Ubuntu:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
    background-color: #1d2538;
}

/* ------------------ FLOATING CONTAINER ------------------ */
.container-top-left {
    margin-top: 23px;
    margin-left: 23px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

/* ----------------------- for back button --------------------- */
.menu-container-back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    background-color: #d4f2f4;
    padding: 0px;
    border: 1px solid #189ab4;
    border-radius: 14.3734px;
    width: 46.99px;
    max-height: 64px;
    cursor: pointer;
    font-family: "Ubuntu";
    color: #189ab4;
    font-weight: 600;
}

.menu-container-back-button:hover {
    box-shadow: 0px 4px 4px #00000040;
}

/* ----------------------------------------------- PAGE NAME ----------------------------------------------- */
.page-name-container {
    padding: 18px 50px 18px 50px;
    background: #74e7d4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    height: fit-content;
}

@media (max-width: 1000px) {
    .page-name-container {
        display: none;
    }
}

.page-name-text {
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #04445f;
}

/* ----------------------------------------------- VIDEO CONTAINER ----------------------------------------------- */
.video-content-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 73px 23px 23px 23px;
    flex-wrap: wrap;
    gap: 60px;
}

.video-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #74e7d4;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
    min-width: 330px;
    max-width: 330px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    position: relative;
}

.video-title {
    margin-top: 10px;
    font-family: "Ubuntu", sans-serif;
    text-align: center;
}

.information-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
    background-color: #ffffff;
    border-radius: 50%;
    width: 30px;
    display: none;
}

.information-close.fullscreen {
    display: block;
}

.information-close:hover {
    filter: drop-shadow(0px 0px 3px rgba(24, 154, 180, 0.9));
}

video::-webkit-media-controls-fullscreen-button {
    display: none;
}

.video-card.fullscreen video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.bottom-center {
    text-align: center;
    margin: 20px 0;
}

.text-page {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 350;
    margin: 0;
}

/* ----------------------------------------------- YouTube CONTAINER ----------------------------------------------- */

.youtube-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.youtube-icon {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    cursor: pointer;
}

.youtube-icon:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}