* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 100vh;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 250px;
    height: 380px;
    border-radius: 10px;
    background-color: white;
}

.image-container {
    width: 225px;
    height: 230px;
    border-radius: 10px;
}

#image {
    width: 225px;
    height: 230px;
    border-radius: 10px;
}

.text-container  {
    width: 210px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.text-container > p {
    text-align: center;
    font-family: 'outfit', sans-serif;
}

#first {
    font-weight: 700;
}

#second {
    font-weight: 400;
    font-size: 12px;
}
.attribution {
    font-size: 12px;
}