*, *::after, *::before {
  padding: 0;
  margin: 0;
  box-sizing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  background-color: #292D48;
  background-image: url(../img/icone.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 100%;
  font-family: "Inter", sans-serif;
  display: flex;
}

#preloader {
  position: fixed;
  background-color: #292D48;
  width: 100vw;
  height: 100%;
  z-index: 300;
  transition: 0.5s ease;
}
#preloader svg {
  width: 180px;
  height: auto;
}

.removepreloader {
  opacity: 0;
  z-index: -1;
}

div {
  display: flex;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  padding: 2rem;
  align-items: center;
  text-align: center;
  justify-content: center;
}
div .logo {
  margin: 3rem 0;
  max-height: 27vh;
  width: auto;
  margin-top: 0;
}
div .nome {
  max-height: 10vh;
  width: auto;
  margin-bottom: 20px;
}
div h1 {
  color: #EFEFEF;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 22px;
}
div h2 {
  font-size: 22px;
  color: #78CBD3;
  font-weight: 300;
  margin-bottom: 20px;
  padding: 1rem 0;
}
div .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: 50px;
  position: relative;
  top: 0;
  transition: 0.5s ease;
  padding: 1rem 2rem;
}
div .btn img {
  margin-right: 6px;
  width: auto;
  max-height: 15px;
}
div .btn:hover {
  background-color: #78CBD3;
  top: -5px;
}

.icone {
  display: none;
}

@media (max-width: 800px) {
  body {
    background-image: none !important;
  }
  div {
    padding-bottom: 0;
  }
  .logo {
    margin: 1rem 0px !important;
    max-height: initial !important;
    width: 60% !important;
  }
  h1, h2 {
    font-size: 18px;
  }
  .nome {
    max-height: initial !important;
    width: 50% !important;
  }
  .icone {
    display: block;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */