@charset "UTF-8";

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


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

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

.imagem {
    background-color: black;
    color: white;
    text-align: center;
    background-image: url(imagens/girl-flowers.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

section.imagem > h1 {
    padding-top: 3.125rem;
    font-variant: small-caps;
    font-size: 10vw;
    
}

section.imagem > p {
    padding-bottom: 3.125rem;
}

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

a:hover {
    text-decoration: underline;
}

pre {
    white-space: pre-line;
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 1.875rem;
    font-size: 3.5vw;

}

section.normal {
    background-color: white;
    color: black;
    background-image: url(imagens/middle-white-flower.png);
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;

}

section.imagem1 {
    background-color: rgb(47, 46, 46);
    color: white;
    background-image: url(imagens/middle-flower.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
}

section.normal2 {
    background-color: white;
    color: black;
    background-image: url(imagens/bottom-white-flower.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

section.imagem2 {
    background-color: rgb(47, 46, 46);
    color: white;
    background-image: url(imagens/bottom-flower.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.imagem1 p {
    display: inline-block;
    padding: 0.313rem;
    background-color: rgba(0, 0, 0, 0.338);    
}

section.imagem2 p {
    display: inline-block;
    padding: 0.313rem;
    background-color: rgba(0, 0, 0, 0.338); 
}


footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 1.5rem;
}