video {
    height: calc(100vh - 75px);
    height: -webkit-calc(100vh - 18px);
    object-fit: scale-down;
}

body {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.post {
    background-color: rgb(230,230,230);
    display: grid;
    grid-template-rows: 7% fit-content(50em) fit-content(60em) fit-content(3%);
    grid-template-columns: 100%;
    border-radius: 10px;
    @media (min-width: 1042px) {
        margin-left: 20%;
        margin-right: 20%;
        width: 60%;
    }
    padding: 1em;
    overflow: hidden;
    justify-items: center;
}

p{
    @media (min-width: 1042px) {
        font-size: 14;
    }
    @media (max-width: 1042px) {
        font-size: 20;
    }
}

ul {
    height: fit-content(30em);
    display: flex;
    gap: 0vw;
    
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    max-height: 100vh;
}

li{
    list-style-type: none;
    padding: 20px;
    flex: 0 0 100%;
    scroll-snap-align: center;
}

img{
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: scale-down;
}