body{
    display: flex;
    flex-direction:row ;
    justify-content: center;
    align-items: center;
}
h4{
    text-align: center;
    font-family: sans-serif;
}
.main{
    height: 320px;
    width: 320px;
    background-color: whitesmoke;
    border-radius: 1em;
    margin-top: 15%;
}
img{
    height: 320px;
    width: 320px;
    border-radius: 1em;
    object-fit: cover;
}
div.buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
}
button{
    height: 50px;
    width: 100px;
    border: 0em;
    border-radius: 1em;
    cursor: pointer;
    background-color: whitesmoke;
    color: gray;
    margin-top: 5%;
    font-weight: 900;    
}
button:hover,.showTime:hover{
    transition: 1s;
    background-color: gray;
    color: whitesmoke;
}
.main:hover,button:hover{
    transition: 1s;
    transform: scale(1.01);
}
.show{
    background-color: whitesmoke;
    margin-top: 5%;
    height: 50px;
    width: 320px;
    text-align: center;
    border-radius: 0.5em;
    user-select: none;
    cursor: pointer;
}
