@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap'); /*font-family: 'Passion One', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); /*font-family: 'Sriracha', cursive;*/

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

html, body {
    background-color: white;
    min-height: 100vh;
}

:root {

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

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

header > h1 {
    font-family: var(--fonte2);
    font-size: 10vw;
    padding-top: 50px;
    font-variant: small-caps;
    letter-spacing: 6px;
}

header > p {
    font-family: var(--fonte1);
    padding-bottom: 50px;
}

header > p > a {
    text-decoration: none;  
    color: white;
}

header > p > a:hover {
    text-decoration: underline;  
    color: white;
}

.Paragraph {
    padding-top: 10vh;
    padding-bottom: 10vh;
    text-align: left;
    padding-left: 30px;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.562);
}

.Paragraph > p {
    font-family: var(--fonte3);
    font-size: 4vw;
}

#img1 {
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.705);
    background-image: url('../Imagens/background001.jpg');
    background-attachment: fixed;
    background-position: right center;
    background-size: cover;
}

#img1 > p {
    background-color: rgba(0, 0, 0, 0.568);
    color: white;
    display: inline-block;
    padding: 5px;
    text-shadow: 1px 1px 0px black;
}

#img2 {
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.705);
    background-image: url('../Imagens/background002.jpg');
    background-attachment: fixed;
    background-size: cover;
}

#img2 > p {
    background-color: rgba(0, 0, 0, 0.568);
    color: white;
    display: inline-block;
    padding: 5px;
    text-shadow: 1px 1px 0px black;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    font-size: 2vw;
    padding: 10px;
    font-weight: normal;
    font-family: sans-serif;
}

footer > p > a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

footer > p > a:hover{
    text-decoration: underline;
}