@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Passion+One:wght@400;700;900&family=Playwrite+NO:wght@100..400&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Passion+One:wght@400;700;900&family=Playwrite+NO:wght@100..400&family=Sriracha&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font1: Verdana, Geneva, Tahoma, sans-serif;
    --font2: 'Passion One', cursive;
    --font3: 'Sriracha', cursive;
}

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

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

header{
    background-color: black;
    color: white;
    text-align: center;
    font-family: var(--font2);
    font-size: 3em;
}

header > h1{
    padding-top: 50px;
    font-variant: small-caps;
    font-size: 10wh;
}

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

a{
    color: white;
    font-weight: bolder;
}

main{
    background-color: transparent;
}

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

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

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

section.imagem{
    background-color: rgb(55, 51, 51) ;
    color: white;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.562);
    background-size: cover;
    background-attachment: fixed;
}

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

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

section#img02{
    background-image: url('../desafio001/imagens/background002.jpg');
    background-position: right center;
}


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

    


