@charset "UTF_8";

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

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

*{
    margin: 0px;
    padding: 0px;
}

body{
    max-width: 600px;
    min-width: 300px;
    margin: auto;
    background-color: rgba(127, 255, 212, 0.644);
}

header{
    background-color: black;
    color: white;
    text-align: center;
    margin: 0px;
    padding: 30px;
}

header h1{
    font-size: 4em;
    font-family: 'Passion One', sans-serif;
    font-weight: normal;
}

header p{
    padding-top: 15px;
}

header p > a{
    text-decoration: none;
    color: white;
    font-family: 'Passion One', sans-serif;
    font-weight: normal;
}

main{
    background-color: white;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.473);
    font-family: 'Sriracha', cursive;
}

main p{
    text-align: left;
    line-height: 50px;
    width: 250px;
    padding: 20px 20px 20px 10px;
    font-size: 20px;
}

div#foto-fundo1{
    position: relative;
    background-color: aqua;
    background-image: url(../imagens/background001.jpg);
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.489);
}

p#paragrafo1{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.191);
    color: white;
    padding: 10px;
    
    left: 0%;
    top: 50%;

    transform: translate(0%, -50%);
}

div#foto-fundo2{
    position: relative;
    background-color: aqua;
    background-image: url(../imagens/background002.jpg);
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.489);
}

p#paragrafo2{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.191);
    color: white;
    padding: 10px;
    
    left: 0%;
    top: 50%;

    transform: translate(0%, -50%);
}

footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 2px;
}
footer p > a{
    text-decoration: none;
    font-family: 'Passion One', sans-serif;
    font-weight: normal;
    color: white;
}
