*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: cadetblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box_container{
    width: 300px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    padding-inline: 20px;
}

#box_container h3{
    font-weight: 600;
    margin-top: 10px;
}

#box_container h4{
    font-weight: 700;
    color: red;
}

#box_container img{
    border-radius: 5px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#btn{
    margin-top: 10px;
    font-weight: 500;
    background-color: cadetblue;
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
