@charset "UTF-8";

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

* {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100vh;
    font-family: 'Permanent Marker', cursive;
    color: #333;
}

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

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

header > p {
    padding-bottom: 50px;
    font-size: 1em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: white;
}

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

a:hover {
    color: rgba(255, 255, 255, 0.678);
}

section {
    padding-bottom: 10vh;
    padding-top: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-size: 3.2vw;
    
}

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

section.poem {
    background: fixed url('imagens/ceu-1.png') no-repeat center center / cover;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.651);
}

section.poem1 {
    background: fixed url('imagens/old-letters-436501_960_720.jpg') no-repeat center center / cover;
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.719);
}

section.poem > p {
    background-color: #333333a4;
    color: white;
    display: inline-block;
    font-size: 3vw;
    text-shadow: 1px 1px 2px black;
}

section.poem1 > p {
    background-color: #333333a4;
    color: white;
    display: inline-block;
    font-size: 3vw;
    text-shadow: 1px 1px 2px black;
}

footer {
    background-color: black;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 1.3em;
}

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

footer > p > a:hover {
    color: rgba(255, 255, 255, 0.678);
    text-decoration: underline;
}