.container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 0px;
    margin: 150px 100px;
    /* width: 75rem; */
    /* height: 500px; */
}
.card{
    background-color: yellow;
    padding: 0px;
    width: 300px;
    margin: 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    border: 10px solid yellow;
    position:relative;
}
img{
    margin: 0px;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    top: 0;
    overflow: hidden;
}
.card-body{
    background-color: gray;
    padding: 20px;
    border-radius: 10px;
    margin: 0px;
    position: absolute;
    width: 280px;
    top: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;

}
.btn-sides{
    background-color: yellow;
    padding: 7px;
    font-size: 15px;
    color: white;
    border-radius: 5px;
    border-color: yellow;
}
.btn-center{
    background-color: orange;
    padding: 7px;
    font-size: 15px;
    color: white;
    border-radius: 5px;
    border-color: orange;
}
h1{
    margin: 5px;
}


