
h1 {
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 5em;
    margin: 0em 0em;
    padding: 0.1em 0.05em;
    text-align: center;
}
h2 {
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    text-align: center;
    font-size: 1.5em;
}

body {
    background-image: url(imgs/img-fundo.jpg);
    background-attachment: fixed;
    background-position: left-bottom;

    text-align: justify;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;

    width: 100%;
    height: 100%;

    margin: 0em 0em 0em 0em;
}

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
thead {
    background-color: aqua;
    font-size: large;
}
tbody {
    background-color: azure;
    font-size: medium;
}
th {
    border: 1px solid black;
    padding: 5px;
}
td {
    border: 1px solid black;
    padding: 5px;
}

.imagens, .imagem_arredondada {
    display: block;
    max-width: 200px;
    max-height: 200px;
    float: right;
    margin-left : 10px;
    border: 2px solid black;
}
.imagem_arredondada {
    border-radius: 50%;
}

.header {
    color: floralwhite;

    background-color:black;

    padding-top: 1em;
    padding-left: 0em;
    padding-right: 0em;

    margin-bottom: 2em;
}

.menu {
    background-color:cornflowerblue;
}

.menu ul {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0.25em 0em;
    margin: 0;
    text-align: center;
}

.cortina {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px dotted black;
    margin-right: 20%;
    margin-left: 20%;
    margin-bottom: 2em;
}

.bloco {
    background-color: white;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.5em;
}
.primeiro_bloco {
    background-color: white;
    padding: 0.5em;
    margin-bottom: 2em;
}
.ultimo_bloco {
    background-color: white;
    padding: 0.5em;
    margin-top: 2em;
}

a:link {
    text-decoration: none;
}
a:hover {
    color: gold;
    text-decoration: none;
}
a:active {
    text-decoration: none;
    color: red;
}