@charset "utf-8";
/* CSS Document */
/*RESET*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: 300 !important;
}
#root, #__next {
  isolation: isolate;
}
/*END RESET*/
* {
  text-align: center;
}
body {
  padding: 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200 !important;
  font-style: normal;
  color: #000;
  background: url("../images/mix-colors-opt.jpg") no-repeat;
  background-size: cover;
  background-position: center 0;
  background-blend-mode: lighten;
  height: 100vh;
}
.contwrap {
  max-width: 500px;
  margin: auto;
}
#logo {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
h1 {
  font-size: 30px;
  padding: 10px 20px;
}
.btn {
  display: block;
  margin: auto auto 20px auto;
  text-decoration: none;
  font-size: 20px;
  background: #000;
  color: #22f5f8;
  border-radius: 5px;
  padding: 10px;
  letter-spacing: 1px;
  font-weight: 400;
  width: 100%;
  max-width: 350px;
  box-shadow: 0px 5px 5px #22f5f857;
}
.btn small {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
}
/*################# mobile CSS ################################################################*/
@media only screen and (min-width: 250px) and (max-width: 999px) {
  h1 {
    font-size: 22px;
    padding: 10px;
    font-weight: 400 !important;
    margin: 10px 0;
  }
  .btn {
    display: block;
    padding: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    width: 100%;
    max-width: 90%;
    font-size: 14px;
  }
  .btn small {
    font-size: 8px;
  }
}
@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
}
/* Medium devices (desktops, 1024px and up to 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
/*################# END mobile CSS ################################################################*/