@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Delius&family=Eater&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poetsen+One&family=Vend+Sans:ital,wght@0,300..700;1,300..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: #ffffff;
}

main{
    font-family: poetsen one, sans-serif;
}
header{
    background-color: black;
    color: white;
    text-align: center;
    padding: 40px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
header h1{
    font-size: 68px;
    margin-bottom: 10px;
}
header h3{
    font-size: 20px;
    font-weight: normal;
}
header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
header a:hover {
    text-decoration: underline;
}
.texto{
    background-color: white;
    padding: 10px;
    width: 50%;
    margin: 50px;
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: left;
    font-style: italic;
    white-space: pre-line;
}
.texto-imagem{
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 20px black;
    position: absolute;
    color: white;
    border-radius: 8px;
    width: 30%;
    margin: 50px;
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: left;
    font-style: italic;
    white-space: pre-line;
}
.imagem1{
    background-image: url('imagens/background001.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    background-attachment: fixed;
}
.imagem2{
    background-image: url('imagens/background002.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    background-attachment: fixed;
    margin-bottom: 50px;
}

@media (max-width: 768px){
    .texto-imagem{
        width: 50%;
        margin: 50px;
        font-size: 1em;
        line-height: 1.6em;
    }
    .imagem1, .imagem2{
        height: 400px;
    }
}
footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 50px;
}