* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body{
        display: grid;
        place-items: center;
        font-size: 15px;
        min-height: 100vh;
        background: #d6e2f0;
        font-family: 'Outfit','sans-serif';
    }
    .container{
        width: 18.5rem;
        border-radius: 1rem;
        background: #fff;
        padding: 1rem 1rem 2rem;
    }
    .image-container{
        width: 100%;
        height: 15rem;
        overflow: hidden;
    } 
    .image-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content{
        text-align: center;
    }
    .content h2{
        color: #1f3251;
        margin-bottom: 1rem;
    }
    .content p{
        color: #7b879d;
    }