/* 
- White: hsl(0, 0%, 100%) 
- Light gray: hsl(212, 45%, 89%) 
- Grayish blue: hsl(220, 15%, 55%) 
- Dark blue: hsl(218, 44%, 22%)
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --light_gray: hsl(212, 45%, 89%);
    --grayish_blue: hsl(220, 15%, 55%);
    --dark_blue: hsl(218, 44%, 22%);
}

body {
    background: var(--light_gray);
    display: flex;
    align-items: center;
    height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.container {
    background: var(--white);
    width: 220px;
    /* margin-left: auto;
    margin-right: auto; */
    margin: auto;
    padding: 1rem;
    border-radius: 20px;

}

.container img {
    width: 100%;
    border-radius: 15px;
}

.texts {
    text-align: center;
}

.texts h3 {
    color: var(--dark_blue);
    font-size: 18px;
}

.texts p {
    font-size: 15px;
    color: var(--grayish_blue);
}