@charset "UTF-8";

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

:root{
    --titulo: 'Young Serif', serif;
    --texto: 'Outfit', sans-serif;
}

body{
    text-align: center;
    font-family: "Outfit", sans-serif;
    color: black;
}

h1{
    font-family: "Young Serif", sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.24);
}

section{
    background-color: white;
    max-width: 500px;
    min-width: 300px;
    margin: auto;
    border-radius: 17px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
    padding: 8px;
}

section > p{
    margin: 5px 0px;
    line-height: 1.5;
}

img{
    height: 250px;
    width: 250px;
}

footer{
    font-family: "Outfit", sans-serif;
    font-size: 0.8em;
}

footer a{
    text-decoration: none;
    color: black;
    font-weight: 500;
}

footer a:hover{
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.24);
}