.navbar {
    background-color: rgb(132, 0, 255);
    border-bottom: solid white 2px;
}

.moviesContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.movieTitle {
    font-size: 36px;
    letter-spacing: 6px;
    font-family: "Sekuya";
    text-align: center;
    width: 85%;
}

#movieLibrary {
    margin-top: 50px;
}

.movieLibraryVideo {
    width: 450px;
    height: 253px;
    margin: 15px;
    border-radius: 16px;
    border: 4px solid white;
}

.moviesContainer h3{
    max-width: 375px;
    text-align: center;
}

.movieLibraryContainer {
    width: 1500px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.videoContainer_1280px {
    width: 1280px;
    height: 840px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.videoContainer_380px {
    width: 380px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.videoThumbnail {
    position: relative;
    border-radius: 16px;
    border: 4px solid white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoThumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: rgba(24, 1, 37, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.videoThumbnail:hover::before {
    opacity: 1;
}

.playButton {
    width: 75px;                
    height: 75px;
    background-color: rgb(132, 0, 255);    
    border-radius: 50%;    
    position: relative;   
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 25px rgb(132, 0, 255);
}

.playButton::after {
    margin-left: 10px;
    content: '';
    width: 0;
    height: 0;
    border-left: 28px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

.smallVideoContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
}

.watchCapsule {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.videoCapsule {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.videoCapsule iframe {
    border-radius: 16px;
    border: 4px solid white;
    width: 1280px;
    height: 720px;
}