.button {
    height: 100px;
    padding: 30px 20px 30px 20px; 
    background-color: white;
    border-width: 4px;
    border-radius: 20px; 
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
    font-size: 20px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.button:hover {
    background-color: #2e2ece;
    box-shadow: 0px 5px 20px #0000CC;
    color: #fff;
    transform: translateY(-7px);
}

.imdb {
    height: 100px; 
    border: black solid 4px;
	border-radius: 20px; 
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease 0s;
    cursor: pointer; 
}

.imdb:hover  {
    box-shadow: 0px 5px 20px #f3ce13;
    transform: translateY(-7px);
}

.buttons {
    padding: 20px 100px 20px 100px; 
    display: flex; 
    flex-direction: row; 
    justify-content: space-around; 
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .buttons {
        flex-direction: column;
    }
  }