@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: hsl(0, 0%, 100%);
    width: 320px;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.container img {
    width: 100%;
    border-radius: 10px;
}

.container span {
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: 20px;
    font-size: 20px;
    padding: 0 15px;
}

.container p {
    font-weight: 400;
    color: var(--grayish-blue);
    margin-top: 15px;
    font-size: 15px;
    padding: 0 15px;
    opacity: 0.5;
    margin-bottom: 20px;
    line-height: 1.2;
}







