/* input(32,36): run-time error CSS1034: Expected closing parenthesis, found ','
input(32,36): run-time error CSS1042: Expected function, found ','
input(32,40): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')' */
.PosterWrapper {
    margin: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PosterOne {
    border-radius: 8px;
}

.PosterTwo{
}

.PosterOne .PosterImage {
    overflow: hidden;
    width: 100%;
    max-width: 240px;
    border-radius: 8px;
    transition: all 250ms;
}


.PosterTwo  .PosterImage {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    transition: all 200ms;
}

.PosterImage:hover {
    box-shadow: 0 4px 5px rgb(0,0,0,25%);
    transform :scale(1.1)
}

.PosterWrapper > article {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    padding :10px;
}

.PosterWrapper > article > a {
    display:block;
    cursor:pointer;
}