body {
    background-color: hsl(212, 45%, 89%);
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    row-gap: 3ch;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    row-gap: 3ch;

}

img {
    max-width: 100%;
    width: 300px;
    border-radius: 10px;
}

h1 {
    color: hsl(218, 44%, 22%);
    font-size: 22px;
    text-align: center;
    max-width: 255px;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 0px 0px 0x hsl(0, 0%, 10%);
    width: 300px;
    padding: 2ch;
}

p{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: hsl(220, 15%, 55%);
    max-width: 257px;
}


.editor{
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    color: #3685ff;
}