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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font_00: "Passion One", sans-serif;
    --font_01: "Sriracha", cursive;
}

body {
    background-color: #555555;
}

main {
    margin: auto;
    max-width: 800px;
    min-height: 100vh;
    background-color: darkgray;
}

header {
    color: #ffffff;
    text-align: center;
    background-color: #111111;
    
    h1 {
        font-size: 4em;
        padding-top: 50px;
        font-variant: small-caps;
        font-family: var(--font_00);
    }

    p {
        padding-bottom: 50px;
    }

    @media (max-width: 500px) {
        h1 {
            font-size: 3em;
        }
    }
}

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

a:hover {
    text-decoration: underline;
}

section {
    font-family: var(--font_01);
    padding: 10vh 0 10vh 45px;
    line-height: 3em;

    P {
        font-size: 1.5em;
        padding-bottom: 2em;
    }

    /**** Responsividade ****/
    @media (max-width: 600px) {
        line-height: 2.5em;

        p {
            font-size: 1em;
        }
    }
}

.sepitillas {
    color: #000000;
    background-color: #ffffff;
}

.sepitillas-background {
    color: #ffffff;
    background-color: #2e2e2e;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, .2);
    background-position: right center;
    background-attachment: fixed;
    background-size: cover;

    p {
        padding: 10px;
        display: inline-block;
        text-shadow: 1px 1px 1px #000;
        background-color: rgba(0, 0, 0, .4);
    }
}

#background-01 {
    background-image: url("../imgs/background001.jpg");
}

#background-02 {
    background-image: url("../imgs/background002.jpg");
}

footer {
    padding: 7px;
    color: #ffffff;
    text-align: center;
    background-color: #111111;

    @media (max-width: 400px) {
        font-size: 0.8em;
    }
}