@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100vh;
    font: 62.5% 'Mulish', sans-serif;
}

.container {
    width: 310px;
    background-color: white;
    height: auto;
    position: relative;
    text-align: left;
    box-shadow: 0px 3px 6px 0px #ffff;
    border-radius: 10px;
}

.left-side img {
    object-fit: cover;
    width: 100%;
    height: 150px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}



.right-side {
    padding: 1rem;
}

.badge {
    background-color: #f6f6fa;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
}

h3 {
    font-size: 1.3rem;
    margin: 1rem auto 5px;
}

.text {
    font-size: 1.4em;
    line-height: 1.7em;
}