* {
  margin: 0;
  padding: 0
}

ul, li {
  list-style: none;
}

html, body {
  width: 100%;
  padding: 0;
}

body {
  line-height: 1.5;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(57, 0, 87, 1) 100%);
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

.signup-link-container {
  display: flex;
  align-content: center;
  justify-content: center;
}

.header {
  display: flex;
  flex-direction: row;
  padding: 3vh 2vh 2vh 2vh;
  margin-bottom: 2vh;
  align-items: center;
  justify-content: center;

  .logo-link {
    .logo-image {
      display: block;
      max-width: 30vw;
      min-width: 100px;
    }
  }

  .burger {
    img {
      display: block;
      width: 30px;
      height: 30px;
    }
  }
}

.logo-link.bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 20px;

  .logo-image {
    max-width: 10vw;
    min-width: 100px;
  }
}


.device-container {
  margin: 4vh;
  position: relative;

  .device {
    position: relative;
    display: block;
    width: 70vw;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid black;
  }
}

.signup-link {
  background: #d048ac;
  padding: 0 40px;
  height: 60px;
  display: flex;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-family: "Teko", sans-serif;
  text-wrap: nowrap;
}

.main-title {
  font-size: 2.5em;
  line-height: 1.2em;
  font-family: 'Signika', sans-serif;
  margin-bottom: 2vh;
}

.subtitle {
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: 'Signika', sans-serif;
  margin-bottom: 2vh;
  font-weight: 400;
  color: #ffe167;
  text-decoration: underline;
}

.subtitle2 {
  font-size: 1.2em;
  line-height: 1.2em;
  font-family: 'Signika', sans-serif;
  margin-top: 3vh;
  margin-bottom: 2vh;
  font-weight: 400;
  color: #fff;
}

.intro-copy {
  font-family: 'Signika', sans-serif;
  font-size: 1.2em;
  line-height: 1.4em;
  margin-bottom: 3vh;
  opacity: 0.9;
}

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 10vw;
  text-align: center;

  h1 {
    font-family: "Teko", sans-serif;
    font-weight: normal;
    margin-bottom: 10px;
  }

  p {
    font-weight: normal;
    margin-bottom: 30px;
  }
}

.section {
  margin-bottom: 20px;

  .section-title {
    font-family: 'Signika', sans-serif;
    font-size: 30px;
    margin: 10px 0;
    color: #fff;
    line-height: 34px;
  }

  p {
    opacity: 0.8;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-family: 'Signika', sans-serif;

    &.note {
      font-style: italic;
      font-size: 1em;
      line-height: 1.1em;
      color: #ff9c9c;
    }
  }
}

.links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Signika', sans-serif;
  padding: 3vh;
  font-size: 1em;

  a {
    line-height: 2em;
    color: rgba(255, 255, 255, 0.8);
  }
}

.footer {
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Signika', sans-serif;
  padding: 3vh;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}
