@charset "utf-8";

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

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

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

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

html, body {
    min-height: 100vh;
    background-color: darkgrey;
    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: 10vw;
}

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

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

a:hover {
    text-decoration: underline;
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    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(51, 51, 51);
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.473);
    background-size: cover;
    background-attachment: fixed;
}

section.imagem > p {
    display: inline-block;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.514);
    text-shadow: 1px 1px 0 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;
}

:root{
            --bg: #ffffff;
            --text: #111111;
            --muted: #666666;
        }
        body{
            background: var(--bg);
            color: var(--text);
            transition: background .25s ease, color .25s ease;
        }
        body.dark{
            --bg: #0f1115;
            --text: #e6e6e6;
            --muted: #bdbdbd;
            background: var(--bg);
            color: var(--text);
        }
        /* botão fixo no canto superior direito */
        #dark-mode-toggle{
            position: fixed;
            top: 1rem;
            right: 1rem;
            padding: .35rem .6rem;
            border-radius: 6px;
            border: 1px solid currentColor;
            background: transparent;
            color: inherit;
            cursor: pointer;
            font-size: .95rem;
            z-index: 1000;
        }