* {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
}

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

.frame {
    background: white;
    border-radius: 10px;
    width: 250px;
    height: auto;
    padding: 10px;
}

.frame img {
    width: 230px;
    height: auto;
    border-radius: 10px;
    
}

.frame h1 {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin: 15px 10px;
}

.frame p {
    font-size: 12px;
    text-align: center;
    color: hsl(220, 15%, 55%);
    margin: 0 15px 20px;
}