.flex {
    display: flex;
}

.grid{
    display: grid;
}

ul{
    list-style: none;
    appearance: none;
    margin: 0;
    padding: 0;
}

.column-flex {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.space-btw {
    justify-content: space-between;
}

.unfilled-button {
    width: auto;
    min-width: auto;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    padding: 0px 16px;
    border-radius: 2em;
    box-sizing: border-box;
    flex-wrap: nowrap;
    line-height: 100%;
}

.filled-white {
    width: auto;
    min-width: auto;
    color: black;
    background-color: white;
    padding: 0px 16px;
    border-radius: 2em;
    border: 0px solid white;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.top-10-picks button {
    position: relative;
    padding: 0;
    background: rgb(35, 35, 35);
    border: none;
    border-radius: 1rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

.trending {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 1rem;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2;
}

.movie-container {
    height: 16.374rem;
    width: 8.2rem;
    box-sizing: border-box;
}

.number-count {
    position: relative;
    ;
}

.count {
    position: absolute;
    top: -17.2rem;
    left: -5.5rem;
    z-index: 2;
    font-weight: 900;
    font-size: 4.5rem;
    color: black;
    -webkit-text-stroke: 0.125rem white;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
}

.reason-wrapper {
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    box-sizing: border-box;
}


@media screen and (max-width: 960px) {
    .movie-container {
        height: 13.04rem;
        width: 6.5rem;
    }

    .count {
        top: -13.6rem;
        left: -4.5rem;
        font-size: 3.5rem;
        -webkit-text-stroke: 0.1rem white;

    }

    .reason-wrapper {
        width: 100%;
        padding: 1.2rem;
        grid-template-columns: 1fr auto;
    }

}

@media screen and (max-width: 600px) {
    .movie-container {
        height: 13.04rem;
        width: 6.5rem;
    }

    .count {
        top: -13.6rem;
        left: -4.5rem;
        font-size: 3.5rem;
        -webkit-text-stroke: 0.1rem white;

    }

    .reason-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .reason-wrapper .img-content {
        align-items: flex-end;
    }
}

@media screen and (max-width: 480px) {
    .movie-container {
        height: 13.04rem;
        width: 6.5rem;
    }

    .count {
        top: -13.6rem;
        left: -4.5rem;
        font-size: 3.5rem;
        -webkit-text-stroke: 0.1rem white;
    }
}