@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* Estilos gerais */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f7f7f7;
    font-family: "Libertinus Serif", "Literata", serif;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    line-height: 1.2;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:visited, a:active, a:focus {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
}



/* Wrapper */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* border: 1px solid red; */
}

/* Main */

main {
    max-width: 36rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    font-size: 1.8rem;
    padding: 20px;
    /* border: 1px solid red; */
}

header {
    margin-bottom: 1rem;
}

.home_links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.return_to_home {
    font-size: 1.5rem;
    text-decoration: underline;
}

/* Footer */

.footer_links {
    display: flex;
    place-content: center;
    padding: 20px;
    gap: 2rem;
    font-size: 1.8rem;
    /* border: 1px solid red; */
}

.eu_emanuel {
    margin-bottom: 1.5rem;
}

/* Poesias */
.lista_de_poesias {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poema h1 {
    margin-bottom: 1.3rem;
}

.poema p {
    margin-bottom: 1.3rem;
    line-height: 1.4;
}

/* Contato */
.contato p {
    margin-bottom: 1rem;
}

/* Galeria */
figure {
    margin: 0;
}