@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    /* Colors */
    --slate-900: rgb(31, 49, 79);
    --slate-500: rgb(104, 119, 141);
    --slate-300: rgb(213, 225, 239);

    --white: rgb(255, 255, 255);

    /* Spacing */
    --spacing-500: 2.5rem;
    --spacing-300: 1.5rem;
    --spacing-200: 1rem;
}

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

body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;

    background-color: var(--slate-300);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 98dvh;
}

.container{
    padding: var(--spacing-200, 1rem) var(--spacing-200, 1rem) var(--spacing-500, 2.5rem) var(--spacing-200, 1rem);
    gap: var(--spacing-300, 1.5rem);
    max-width: 24rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    background-color: var(--white);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image img{
    width: 100%;

    border-radius: 0.625rem
}

.text {
    padding: 0 var(--spacing-200, 1rem);
    gap: var(--spacing-200, 1rem);

    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.text h1 {
    color: var(--slate-900);

    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    font-size: 1.6rem;
    font-weight: 700;
    line-height: 120%;
}

.text p {
    color: var(--color-slate-500, #68778D);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    font-size: 1.2rem;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.2px;
}

footer {
    display: flex;
    justify-content: center;
    
    font-size: 0.9rem;
}

footer p {
    text-align: center;
}

footer a {
    text-decoration: none ;
}

footer a:hover {
    color:navy;
    text-decoration: underline;
}