* {
    
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    /* box-sizing: border-box; */
}

body {
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}



.card-container {
    background-color: hsl(0, 0%, 100%);
    /* max-width: 25vw; */
    width: 20%;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}
.inner-container {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 100%;
    border-radius: 10px;
}

.description {
    width: 90%;
    text-align: center;
    padding: 10px;
}

h2 {
    font-weight: 700;
}

p {
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    margin: 10px;
}

@media (max-width: 375px) {
    .card-container {
        /* max-width: 50vw; */
        width: 80vw;
    }
}