@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Story+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Passion+One:wght@400;700;900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Story+Script&display=swap');

:root {
    --font: Verdana, Geneva, Tahoma, sans-serif;
    --font2: "Dancing Script", cursive;
    --font3: "Sansation", sans-serif;
}

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

}

html,
body {
    min-height: 100vh;
    background-color: darkgray;
    font-family: var(--font3);
}

header {
    position: relative;
    background-color: black;
    color: white;
    text-align: center;
}

header>h1 {
    padding: 50px;
    font-variant: small-caps;
    font-family: var(--font1);
    font-size: 7vw;
}

header>p {
    padding-bottom: 50px;
}

header a,
footer a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

header a:hover,
footer a:hover {
    text-decoration: underline;
}

nav {
    width: auto;
    position: absolute;
    top: 10px;
    padding-left: 5px;
}

ul {
    background-color: #010824;
}

.menu {
    color: green;
    list-style: none;

    float: left;
}

.menu li {
    position: relative;
    z-index: 1;

    float: left;
    border-right: 1px solid #c0c0c0;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}


.menu li a:hover {
    background: #333;
    color: #fff;
    text-shadow: 0px 0px 5px #fff;
}

.menu li ul {
    position: absolute;
    top: 25px;
    left: 0;
    background-color: #070707;
    display: none;
}

.menu li:hover ul,
.menu li.over ul {
    display: block;
}

.menu li ul li {
    border: 1px solid #c0c0c0;
    display: block;
    width: 150px;
}

section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 2em;
    padding-left: 30px;
    font-family: var(--font2);
    font-size: 4vw;

}

section.normal {
    background-color: white;
    color: black;
}

section.imagem {
    background-color: rgb(82, 81, 81);
    color: white;
    box-shadow: inset 6px 6px 10px 0px black;
    background-size: cover;
    background-attachment: fixed;

}

section>p {
    padding-bottom: 2em;
}

section.imagem>p {
    background-color: rgba(56, 55, 55, 0.712);
    display: inline-block;
    padding: 5px;
    text-shadow: 2px 1px 0px black;


}

section#img01 {
    background-image: url('imagens/imagens/background001.jpg');
    background-position: right center;


}

section#img02 {
    background-image: url('imagens/imagens/background002.jpg');
    background-position: right center;

}

footer {
    background-color: black;
    text-align: center;
    color: white;
    padding: 10px;
}