@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");


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

:root
{
    --white: hsl(0, 0%, 100%);
    --azul-claro: hsl(212, 45%, 89%);
    --azul: hsl(216, 15%, 48%);
    --azul-escuro: hsl(218, 44%, 22%);
}

img
{
    max-width: 100%;
}

body
{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    background-color: var(--azul-claro);
    font-size: 15px;
    margin: 1.25rem;
}

body::-webkit-scrollbar
{
    display: none;
}


.card
{
    
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.05);
    width: 500px;
}

.card img
{
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.title
{
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
}

.text
{
    color: var(--azul);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.3rem;
}



@media screen and (max-width: 520px){
    .card
    {
        width: 375px;
    }
}



