:root {
  --primary-color: #f15bb5;
  --secondary-color: #7626D4;
  --accent-color: #00bbf9;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #222;
  color: #fff;
  overscroll-behavior: none;
}

* {
  font-family: 'Montserrat', sans-serif;
}

header {
  text-align: center;
  padding: 40px 0 0;
}

.logo {
  width: 220px;
  height: auto;
}

.logotype {
  width: 60px;
  height: auto;
  margin-top: 10vh;
  opacity: .25;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Platypi', sans-serif;
}

h1 {
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 16px;
}

h2 {
  font-size: 45px;
  line-height: 48px;
  margin-top: 0;
  opacity: .6;
}

h3 {
  font-size: 26px;
  line-height: 28px;
  margin: 0;
}

main {
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero {
  padding-bottom: 80px;
  text-align: center;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: content-box;
}

.hero h1, .hero h2{
  padding: 0 20px;
}

.hero h2{
  animation: appear 3s ease-in 1 forwards;
}

.newsletter {
  background-color: #252525;
  padding: 60px;
  box-sizing: content-box;
  text-align: center;
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.credits {
  text-align: center;
  font-size: 90%;
  background: #222;
}

.credits a {
  padding: 0 10px;
}

a {
  color: white;
}

a:hover {
  color: var(--accent-color);
}

.socials {
  padding: 3vh 0 10vh;
  opacity: .5;
}

form {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

label.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="email"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-right: 10px;
}

button {
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 575.98px) and (orientation: portrait) {
  .hero h2{
    margin-top: 20px;
  }
  h3 {
    font-size: 30px;
    line-height: 32px;
  }
  .newsletter p{
    font-size: 18px;
  }

  input[type="email"] {
    margin-right: 0px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
    padding: 15px;
  }

  button {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
  }
}

button:hover {
  background-color: #0056b3;
}

#responseMessage {
  margin-top: 10px;
}


@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: .6;
  }
}