@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2? family= Passion+One & display=swap');

@import url('https://fonts.googleapis.com/css2? family= Pinyon+Script & display=swap');

:root {
    --fonte1: Verdana, Geneva, Tahoma, sans-serif;
    --fonte2: 'Passion One', cursiva;
    --fonte3: 'Pinyon Script', cursiva;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #d6c6bc;
    margin: -16px 0px;
}

html, body {
    min-height: 100vh;
    background-color: darkgray;
    font-family: var(--fonte1);
}

header {
    background-color: #5d3a24;
    color: white;
    text-align: center;
}

header > h1 {
    padding-top: 40px;
    font-variant: small-caps;
    font-family: var(--fonte2);
    font-size: 4vw;
}

header > p {
    padding-bottom: 40px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

a:hover {
    text-decoration: underline;
}

main {
    min-width: 300px;
    max-width: 900px;
    margin: 0px auto 10px auto;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.425);
    border-radius: 0px 0px 10px 10px;
}

section {
    padding-top: 5vh;
    padding-bottom: 1vh;
    line-height: 1.5em;
    padding-left: 40px;
    font-family: var(--fonte3);
    font-size: 3vw;
    border-left: 8px solid #5D3A24;
}

section > p {
    padding-bottom: 2em;
    text-align: justify;
    padding-right: 2em;
    text-indent: 30px;
}

section > p.ave-maria {
    text-indent: 0px;
    margin-left: 70px;
    color: #F4F28C;
}

section > p > span {
    margin-left: 30px;
    color: #5D3A24;
}

section.normal {
    background-color: #f4ece2;
    color: black;
    border-radius: 10px;
    margin: 10px;
}

section.imagem {
    background-color: rgb(40, 36, 36);
    color: white;
    box-shadow: inset 5px 5px 5px 5px rgba(0, 0, 0, 0.484);
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    border-radius: 8px;
    max-width: 100%;
}

section.imagem > p {
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.515);
    text-shadow: 1px 1px 0px black;
    border-radius: 10px;
    border-left: 3px solid #333231;
    margin: 7px;
    font-size: 3vw;
}

section.imagem > p > i {
    color: #F4F28C;
}

section.imagem > p > span {
    color: #F4D4C1;
}

section#img01 {
    background-image: url(background001.jpg);
    background-position: top center;
}

section#img02 {
    background-image: url(background002.jpg);
    background-position: top center;
}

section#img03 {
    background-image: url(background003.jpg);
    background-position: top center;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.5vw;
}