@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", serif;
}
html, body{
    height: 100%;
    width: 100%;
    
}

body{
    display: flex;
    background-color: cornflowerblue;
    align-items: center;
    justify-content: center;

}
#card{
    height: 450px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    
}
#card img{
    height: 50%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}
#card h1{
    font-size: 25px;
    margin: 10px 0;
    text-align: center;
}
#card h5{
    font-size: 20px;
    margin: 10px 0;
    text-align: center;
    color: red;
}
#btn_container button{
    padding: 15px 25px 15px 25px ;
    background: cadetblue;
    border: none;
    margin: 10px 0;
    font-size: 15px;
    cursor: pointer;
    }