@charset "UTF-8";

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

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

:root {
    --fonte1: verdana, geneva, tahoma, sans-serif;
    --fonte2: 'Fugaz One', sans-serif;
    --fonte3: 'Lavishly Yours', cursive;
}

* {
    margin: 0px;
    padding: 0px;
    font-size: 1em;
}


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

header {
    background-color: black;
    color: white;
    text-align: center;
}

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

header p {
    padding-bottom: 50px;
}

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

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 5vw;
}

section > p {
    padding-bottom: 2em;
}

section.normal {
    background-color: white;
    color: black
}

section.imagem {
    background-color: rgb(55, 55, 55);
    color: white;
    box-shadow: inset 5px 5px 20px 0px rgba(0, 0, 0, 0.716);
}

section.imagem > p {
    display: inline-block;
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.216);
}

section#img01 {
    background-image: url('./imagens/background001.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position:right center;
}

section#img02 {
    background-image: url('./imagens/background002.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

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