@charset "UTF-8";
:root {
    --slate-300: #D5E1EF;
    --slate-500: #68778D;
    --slate-900: #1F314F;
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--slate-300);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

main {
    background-color: white;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 20rem;
    margin: 0 auto;
    gap: 0.5em;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--slate-500);
    padding-block-end: 15px;
}

img {
    width: 18rem;
    height: auto;
    border-radius: 20px;
    margin-top: 1rem;
}

.text {
    text-align: center;
    margin: 0 5vw;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.text h1 {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    color: var(--slate-900);
}

.text p {
    padding: 0px 22px;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: var(--slate-900);
}