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

:root{
    --azul: hsl(212, 45%, 89%);
    --cinza1: hsl(220, 15%, 55%);
    --cinza2: hsl(218, 44%, 22%);

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    background-color: var(--azul);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retangulo{
    background-color: #fff;
    width: 400px;
    height: 520px;
    border-radius: 14px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.363);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.retangulo img{
    width: 300px;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 25px;
}
aside{
    width: 290px;
}
  
  
aside h1{
    font-size: 25px;
    font-weight: 700;
}
  
aside p{
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 400;
    color: hsl(218, 44%, 22%)
}