/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Quicksand", sans-serif;
}

h1, h2 {
  font-family: "Press Start 2P", monospace;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  background-color: #152D3F;
  color: #fff0f0;
  font-size: 20px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #efe000;
}

h1, h2, h3, h4 {
  text-shadow: 0em 0.12em 0em black, 0em -0.12em 0em black, 0.12em 0em 0em black, -0.12em 0em 0em black;
}

h2 {
  font-size: 32px;
  margin: 1em 0em 1em;
}

.hide {
  display: none;
}

.conteudo {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
header nav {
  min-height: 60px;
  padding: 0.25rem 1vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: #152d3f;
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.5);
}
header nav h1.logo {
  text-transform: uppercase;
  font-size: 1.6rem;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 1em auto;
  font-size: 1rem;
  margin-right: 0;
}
header nav ul li {
  text-shadow: 0em 0.12em 0em black, 0em -0.12em 0em black, 0.12em 0em 0em black, -0.12em 0em 0em black;
}
header nav ul li:hover {
  color: #efe000;
}
header nav ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  line-height: 2;
  padding: 0 2rem;
}
header.inicio nav {
  min-height: 90vh;
  flex-direction: column;
  background-color: rgba(21, 45, 63, 0);
  box-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0);
}
header.inicio nav h1.logo {
  font-size: 3vw;
}
header.inicio nav ul {
  width: 100%;
  font-size: 1.2vw;
  margin-right: auto;
}
@media all and (orientation: portrait) {
  header.inicio nav h1.logo {
    font-size: 5vw;
  }
  header.inicio nav ul {
    flex-direction: column;
    font-size: 3vw;
  }
}
header.final {
  position: relative;
}
section {
  min-height: 60vh;
  padding-top: calc(80px + 2vh);
  padding-bottom: 5vh;
}
section#inicio {
  padding-bottom: 0;
  margin-bottom: -2px;
}
section#sobre {
  background: linear-gradient(to bottom, #879759, #152D3F);
}
section > h2 {
  margin-top: 0;
}
section p {
  line-height: 2;
  margin-bottom: 1em;
}
section a {
  text-decoration: underline;
}

footer {
  position: relative;
  overflow: auto;
  min-height: 40vw;
}
footer .conteudo {
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer h2 {
  font-size: 2vw;
}
footer img.fundo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

* {
  margin: 0;
  padding: 0;
}

/*
@keyframes bounce {
  from {
    transform: translateY(0px);
  } to {
    transform: translateY(-40px);
  }
}
// */
@keyframes sway {
  from {
    transform: translateX(50%);
  }
  to {
    transform: translateX(-100%);
  }
}
.fundo-estrelas {
  min-height: 100vh;
  background: -webkit-linear-gradient(top, #152c3e, #37618a);
  position: relative;
  overflow: hidden;
}
.fundo-estrelas #sky {
  width: 100%;
  height: 99vh;
}
.fundo-estrelas #mountains {
  z-index: 2;
  position: absolute;
  bottom: 20%;
  margin-bottom: -16px;
  left: 10%;
}
.fundo-estrelas .cloud {
  position: absolute;
  right: 50%;
  top: 30%;
  z-index: 1;
  /*
  		&.cloud1 {
  			z-index: 4;
  			top: 20%;
  			animation: bounce 2s ease-in-out 0s infinite alternate;
  		}
  
  		&.cloud2 {
  			z-index: 3;
  			position: absolute;
  			top: 22%;
  			animation: bounce 3.5s ease-in-out 2s infinite alternate;
  		}
  		&.cloud3 {
  			z-index: 1;
  			top: 30%;
  			animation: bounce 4.5s ease-in-out 2s infinite alternate;
  		}
  		&.cloud4 {
  			z-index: 2;
  			top: 22%;
  			animation: bounce 6.0s ease-in-out 2s infinite alternate;
  		}
  		// */
}
.fundo-estrelas .trees {
  width: 100%;
  height: 130px;
  z-index: 4;
  position: absolute;
  bottom: 20%;
  margin-bottom: -100px;
}
.fundo-estrelas #ground {
  z-index: 1;
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  background: #879759;
}
.fundo-estrelas #hills {
  position: absolute;
  left: 10%;
  margin-left: -120px;
  margin-bottom: -86px;
  bottom: 20%;
  z-index: 3;
}
.fundo-estrelas #stars {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=estilo.css.map */
