.youtubeModal__section {
    width: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
}

.youtubeModal__section--active {
    display: block;
}

.youtubeModal__parent {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.youtubeModal__parent .cross__icon {
    position: absolute;
    top: 10%;
    right: 5%;
    cursor: pointer;
    width: 15px;
}

.youtubeModal__media {
    width: 60%;
    aspect-ratio: 16/9;
}

.youtubeModal__media embed,
.youtubeModal__media iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .youtubeModal__media {
        width: 90%;
        aspect-ratio: 16/9;
    }
}