/* font-family: 'Outfit', sans-serif; */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 97vh;
    max-height: 100vh;
}

main{
    background-color: white;
    border-radius: 10px;
    width: 300px;
}

main .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    /* gap: 10px; */
    padding: 10px;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.cantain {
    padding: 0 18px;
    text-align: center;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.5;
    color: hsl(218, 44%, 22%);
    font-size: 20px;
}

p {
    font-size: 15px;
    color: hsl(220, 15%, 55%);
}