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

:root {
    --slate-900: #1f314f;
    --slate-500: #68778d;
    --slate-300: #d5e1ef;
}

html {
    .attribution { font-size: 11px; text-align: center; }
    .attribution a { color: hsl(228, 45%, 44%); }
    font-family: "Outfit", sans-serif; 
}

body {
    background-color: var(--slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}



.main {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 320px;
    height: 536px;
    padding: 16px 16px 40px 16px;
    border-radius: 20px;
}

.main__img {
    width: 288px;
    height: 288px;
    border-radius: 10px;
}

.main__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 0 16px;
}

.main__heading {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
}

.main__description {
    font-size: 15px;
    line-height: 140%;
}

@media (min-width: 320px) and (max-width: 768)
