.carousel {
    height:60vh;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position:absolute;
    margin-bottom:200px;
    width: 100%;
    display: flex;
    align-items: center;
    padding:0px 10px;
    box-sizing: border-box;
    
}
.carousel img {
    height:90%;
    display: inline-block;
    margin-left:10px;
    margin-right:10px;
    transition-duration: 0.3s;
    cursor: pointer;
}
.carousel img:hover {
    transition-duration: 0.3s;
    transform: scale(1.03);
}