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

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

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: hsl(0, 0%, 100%);
    width: 280px;
    height: 450px;
    border-radius: 20px;
}

.container__img {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

img {
    border-radius: 10px;
    width: 250px;
    height: 250px;
}

.container__paragraph {
    text-align: center;
    margin-bottom: 12px;
    padding: 5px;
}

.paragraph__one {
    color: hsl(218, 44%, 22%);
    font-size: 1.3em;
    font-weight: 700;
}

.paragraph__two {
    color: hsl(213, 18%, 73%);
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
}