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

div {
    background-color: hsl(0, 0%, 100%);
    text-align: center;
    width: 20%;
    border-radius: 5%;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-self: center;
}

p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.header {
    font-weight: 700;
}

.paragraph {
    font-weight: 400;
}

img {
    border-radius: 5%;
    max-height: 100%;
    max-width: 100%;
}

@media (max-width: 375px){
    div {
        max-width: 320%;
        margin: none;
    }
}