@charset "UTF-8";

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

:root {
    --fonte1: Verdana, Geneva, Tahoma, sans-serif;
    --fonte2: "Passion One", sans-serif;
    --fonte3: "Sriracha", cursive;
}

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

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

a:hover {
    text-decoration: underline;
}

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

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

header > h1 {
    /* text-transform: uppercase; --> Transforma o texto em maiúsculo */
    font-variant: small-caps; /* Transforma o texto em maiúsculo, porém mantém os maiúsculos originais maiores */
    font-family: var(--fonte2);
    font-size: 10vw;
}

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

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

section.imagem {
    color: white;
    box-shadow: inset 6px 6px 13px 0px black;
    background-size: cover;
    background-attachment: fixed;
}

section.imagem > p {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

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

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

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