@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit';
}

:root{
    --White: hsl(0, 0%, 100%);
    --Slate300: hsl(212, 45%, 89%);
    --Slate500: hsl(216, 15%, 48%);
    --Slate900: hsl(218, 44%, 22%);
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Slate300);
}

.container{
    background-color: var(--White);
    max-width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    gap: 1.5rem;
}

.container img{
    width: 100%;;
    border-radius: 1rem;
}

h2{
    font-size: 1.3rem;
    font-weight: 700;
}

p{
    font-size: 1rem;
    color: var(--Slate500);
}

@media(max-width: 425px){
    body{
        padding: 5rem 1rem;
    }
}