@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
:root {
  --brightred: #E30613;
}

body {
  padding: 0;
  margin: 0;
  background: #000;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.bg {
  position: fixed;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: -1;
  opacity: 0.2;
  -webkit-filter: hue-rotate(150deg) blur(1px);
          filter: hue-rotate(150deg) blur(1px);
}

.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: 5;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0px;
}

.container img {
  width: 250px;
}

.container h1 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1em;
}

.container .newsletter {
  margin: 0;
  margin-top: 50px;
}

.container .newsletter p {
  color: #aaa;
}

.container .newsletter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .newsletter form input {
  padding: 10px 10px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border-radius: 8px 0px 0px 8px;
  color: black;
  font-weight: 600;
  width: 250px;
}

.container .newsletter form input:focus {
  outline: none;
}

.container .newsletter form input::-webkit-input-placeholder {
  font-weight: 500;
  color: #aaa;
}

.container .newsletter form input:-ms-input-placeholder {
  font-weight: 500;
  color: #aaa;
}

.container .newsletter form input::-ms-input-placeholder {
  font-weight: 500;
  color: #aaa;
}

.container .newsletter form input::placeholder {
  font-weight: 500;
  color: #aaa;
}

.container .newsletter form .submit {
  font-weight: 600;
  background: var(--brightred);
  border: none;
  border-radius: 0px 8px 8px 0px;
  color: white;
  text-transform: uppercase;
  padding: 10px 20px;
  width: auto;
  border: var(--brightred) solid 1px;
}

@media only screen and (max-width: 500px) {
  body {
    background: url("images/hero-section_bg.png");
    background-position: 20%;
    background-size: cover;
  }
  .bg {
    display: none;
  }
  .container {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0 auto;
  }
  .container h1 {
    font-size: 32px;
  }
  .container img {
    width: 180px;
  }
  .newsletter {
    text-align: center;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 50px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px !important;
  }
  .newsletter p {
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  .newsletter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .newsletter form input {
    font-size: 14px !important;
  }
  .newsletter form .submit {
    padding: 10px !important;
    font-size: 14px !important;
  }
}
/*# sourceMappingURL=styles.css.map */