body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 10pt;
    padding: 0px;
    background-color: rgb(247, 248, 255);
}

.movie {
    background-color: rgb(250, 250, 255);
    display: flex;
    flex-direction: row;
    min-width: 356px;
    padding: 10px;
    border-color: rgb(209, 209, 209);
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    box-shadow: 2px 2px 2px rgb(240, 240, 240);
}

.movie:hover {
    background-color: rgb(245, 245, 255);
    border-color: rgb(209, 209, 255);
    box-shadow: 3px 3px 3px rgb(230, 230, 230);
}

@media (max-width: 800px) {
    .movie {
        flex-direction: column;
    }
}


.play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    font-size: 50px;
    color: rgb(27, 142, 242);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
}


@media screen and (min-width: 800px){
    .play-icon{
        opacity: 0;
        transition: none;
    }
}

.movie-player {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 356px;
    position: relative; 
    cursor: pointer;
}

.thumbnail {
    width: 356px;
    height: 200px;
    object-fit: cover; 
}

.movie-player:hover .thumbnail{
    opacity: 50%;
}


.movie-player:hover .play-icon {
    opacity: 1;
}

.movie-desc {
    flex-grow: 1;
    margin-left: 10px;
    margin-top: 0px;
}

@media (max-width: 800px) {
    .movie-desc {
        margin-top: 10px;
        margin-left: 0px;
    }
}

.movie-desc-title {
    color: rgb(0, 0, 64);
    font-size: x-large;
    font-weight: bold;
    margin: 0px;
}

.movie-desc-subtitle {
    color: rgb(96, 96, 96);
    font-size: larger;
    margin-top: 5px;
}

.movie-desc-desc {
    font-size: small;
    color: rgb(32, 64, 96);
    margin-top: 5px;
}

.movie-desc-tags {
    margin-top: 10px;
}

.movie-desc-tag {
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    border-color: rgb(205, 205, 255);
    background-color: rgb(198, 235, 255);
    padding: 4px;
    font-size: small;
    margin-right: 2px;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

a:hover {
    color: gray;
}

.movie-desc-date {
    margin-top: 15px;
    color: rgb(184, 184, 184);
    font-size: smaller;
}

.movie-desc-cnt {
    margin-top: 5px;
    color: rgb(196, 164, 164);
    font-size: x-small;
}

.info {
    position: fixed;
    bottom: 10px;
    left: 50%;
    color: gray;
    font-size: smaller;
}

.videoContainer {
    height: 85vh;
    width: 85vw;
}

.videoid {
    object-fit: scale-down;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}