@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Passion+One:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte1);
}

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

body {
    height: 100vh;
}

header {
    background-color: black;
    text-align: center;
    font-variant: small-caps;
    padding-block: 25px;
}

h1, header > p {
    color: white;
}

h1 {
    font-size: 6vw;
    font-family: var(--fonte2);
}
 header > p {
    font-size: 2vw;
 }
a{
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

a:hover{
    text-decoration: underline;
}

section {
    padding: 10vh 20px 10vh;
    line-height: 1.6em;
    font-size: 2.4vw;
}

section > p {
    font-family: var(--fonte3);
    padding-bottom: 1.5em;
}

.img {
    background-color: rgba(58, 58, 58, 0.808);
    background-size: cover;
    background-attachment: fixed;
    color: white;
    box-shadow: inset 5px 7px 13px 1px rgba(0, 0, 0, 0.438);
}

.img > p {
    background-color: rgba(0, 0, 0, 0.315);
    display: inline-block;
    padding: 5px 10px;
    text-shadow: 2px 1px 0px black;
    border-radius: 5px;
}

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

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

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

footer > p, a {
    font-size: 1.8vw;
}
