@charset "UTF-8";

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

@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

:root {
    --fonte1: Verdana, Geneva, Tahoma, sans-serif; 

    --fonte2: "Domine", serif;

    --fonte3: "Niconne", cursive;
}

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

html, body {
    min-height: 100vh;  /*tamanho minimo do meu html*/
    background-color: darkgray;
    font-family: var(--fonte1);
}

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

header > h1 {
    padding-top: 40px;
    font-variant: small-caps;
    font-family: var(--fonte2);
    font-size: 5vw;  /*10% da largura da tela*/
}

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

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

a:hover {
    text-decoration: underline;
    color: rgb(105, 60, 39);
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;  /*espaçamento entre linhas*/
    padding-left: 30px;
    font-family: var(--fonte3);
    font-size: 3.5vw;
}

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

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

section.imagem {
    background-color: rgb(48, 47, 47);
    color: white;
    font-family: var(--fonte3);
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.486);
    background-size: cover;
    background-attachment: fixed;  /*efeito de fixa a imagem*/
}

section.imagem > p {
    background-color: rgba(0, 0, 0, 0.288);
    padding: 5px;
    display: inline-block;  /*se adapita com o tamanho do conteudo*/
    text-shadow: 2px 2px 1px black;
}

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

section#img02 {
    background-image: url(imagens/background002.jpg);
}

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