@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;900&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;900&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;900&family=Special+Gothic+Expanded+One&family=Sriracha&display=swap');

:root {
    --font1: Verdana, Geneva, Tahoma, sans-serif;
    --font2: 'Sriracha', cursive;
    --font3: 'Special Gothic Expanded One', sans-serif;
}
* {
    margin: 0px;
    padding: 0px;
}
html, body {
    font-family: var(--font1);
}
header {
    background-color: black;
    color: white;
    text-align: center;
}
header > h1 {
    padding-top: 50px;
    font-variant: small-caps;
    font-size: 6vw;
    font-family: var(--font3);
}
main {
}
header > a {
    padding-bottom: 50px;
    display: inline-block;
    color: white;
    text-decoration: none;
}
section.imagem {
    background-color: rgba(0, 0, 0, 0.26);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.329);
}
section {
    padding-left: 35px;
    
}
section.normal {
    max-width: 1000px;
    min-width: 300px;
    padding-bottom: 50px;
}
section.imagem p {
    background-color: rgba(0, 0, 0, 0.26);
    padding: 10px;
    display: inline-block;
    color: white;
    
}
section > p {
    font-family: var(--font2);
    font-size: 3.5vw;
    display: inline-block;
}
header a:hover {
    text-decoration: underline;
}
#text {
    padding-bottom: 50px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
}
#img1 {
    background-image: url(../image/folha.jpg);
    background-size: cover;
    background-attachment: fixed;
}
#img2 {
    background-image: url(../image/catedral.jpg);
    background-size: cover;
    background-attachment: fixed;
}
footer p a {
    text-decoration: none;
    color: white;
}
footer p a:hover {
    text-decoration: underline;
}