:root {
    --white: hsl(0, 0%, 100%);
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
    --max-width: 320px;
    --font-size: 15px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}


@media screen and (min-width: 375px) {

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slate-300);
}
    
.container {
    width: 320px;
    min-height: 500px;
    padding: 16px 16px 40px 16px;
    border-radius: 20px;
    background-color: var(--white);
}

.image {
    margin-bottom: 24px;
}


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

.title {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 22px;
}

p {
    color: var(--slate-500);
    margin-top: 16px;
    text-align: center;
}

.description {
    padding: 0px 16px;
}

}