* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
}

.container {
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    border-radius: 15px;
}

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

h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 10px;
}

p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: hsla(216, 15%, 48%, 1.00)
}


@media (max-width: 400px) {
    .container {
        width: 315px;
        padding: 15px;
    }
}