@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arbutus&family=Emilys+Candy&family=Goblin+One&display=swap');

:root {
    --cor0: #E8EBF7;
    --cor1: #FFF4B3;
    --cor2: #F3223A;
    --cor3: #6B0504;
    --cor4: #360302;
    --cor5: #0B0033;

    --fontepadrao: Arial, Helvetica, Verdana, sans-serif;
    --fontetitulo: "Emilys Candy", Times, serif;
    --fontepoema: "Patrick Hand", cursive;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: var(--fontepadrao);
}

body {
    display: flex;
    flex-flow: column nowrap;
    background-color: black;
    background-image: url(../images/fundo-coracoes.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

header {
    background-color: var(--cor5);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header>h1 {
    font-family: var(--fontetitulo);
    color: var(--cor1);
    text-shadow: 1px 1px 3px black;
    text-align: center;
}

main {
    height: 6500px;
}

div.photoContainer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

img.Photo {
    width: 250px;
}

img.right{
    align-self: flex-end;
    margin-right: 50px;
}
img.left{
    align-self: flex-start;
    margin-left: 50px;
}


footer {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 100vw;
    height: 50px;
    background-color: var(--cor5);
    color: var(--cor0);
}

footer>p {
    font-family: var(--fontepadrao);
    font-size: 0.8em;
    font-weight: bold;
    margin-right: 5px;
}

.img_link {
    padding: 0px 5px 0px 5px;
    width: 25px;
    height: 25px;
}