:root {
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

body {
    font-size: 15px;
    font-family: 'Outfit';
    font-weight: 400, 700;
    background-color: var(--light-gray);
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95vh;
    margin: 0;
    min-height: 95vh;
}

.container {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 230px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

img {
    border-radius: 15px;
    width: 100%;
  height: auto;
}

.badge p {
    color: var(--grayish-blue);
}

footer {
    font-size: 11px;
    text-align: center;

}

footer a {
    color: hsl(228, 45%, 44%);
}