@charset "UTF-8";

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

:root {
    --cor-branco: white;
    --cor-preto: rgb(0, 0, 0);
    --cor-cinza: rgba(114, 107, 107, 0.445);

    --fonte-poema: 'Sriracha', cursive;
}
body{
    margin: 0;
}
header{
    background-color: var(--cor-preto);
    color: var(--cor-branco);
    padding: 30px;
    text-align: center;
    line-height: 5px;
}

.logo{
    font-size: 3.5rem;
    font-weight: bolder;
    text-shadow: 1px 3px 4px rgba(255, 255, 255, 0.329);
}
.autor a{
    text-decoration: none;
    color: var(--cor-branco);
    opacity: .5;
}
.autor a:hover{
    text-decoration: underline;
    color: white;
    font-size: 19px;
    transition-duration: .4s;
}
.secoes{
    font-family: var(--fonte-poema);
    font-weight: bold;
    font-style: italic;
    padding: 20px;
}
.secoes p{
    padding: 20px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.418);
}
#primeira{
    height: 250px;
    background-color: var(--cor-branco);
    padding: 20px;
}
#segunda{
    color: var(--cor-branco);
    background-image: url('../files/images/joaninha.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    background-attachment: fixed;
    padding: 20px;
}
#segunda p{
    background-color: rgba(90, 86, 86, 0.171);
    width: 250px;
    border-radius: 8px;
}
#quinta{
    color: var(--cor-branco);
    background-image: url('../files/images/madeira.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    background-attachment: fixed;
    padding: 20px;
}
#quinta p{
    background-color: var(--cor-cinza);
    width: 250px;
    border-radius: 8px;
}
footer{
    background-color: var(--cor-preto);
    color: var(--cor-branco);
    margin: 0;
    padding: 2px;
    text-align: center;
    font-family: var(--fonte-poema);
    line-height: 5px;
}
footer .direitos{
    font-family: Arial, Helvetica, sans-serif;
}
footer span{
    font-weight: bold;
}

