:root {
  --green: #00ff1f;
  --color: #e434fc;
  --white: white;
}

body {
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1;
}

h1 {
  color: var(--green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 7vw;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1;
}

p {
  color: var(--white);
  margin-bottom: 10px;
}

.section {
  background-image: url('../images/backgrounnd.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  display: flex;
}

.heading {
  color: var(--green);
  font-family: Roboto, sans-serif;
  font-size: 7vw;
  line-height: 1;
}

.flex-left {
  flex-flow: column;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.heading-2 {
  font-size: 4vw;
}

.logo {
  width: 30%;
}

.link-block {
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 1vw;
  padding: .7em .9em .7em .8em;
  font-size: 2vw;
  font-weight: 400;
  text-decoration: none;
}

.spacer {
  height: 3vw;
}

.white-text {
  font-size: 2vw;
  font-weight: 400;
}

.heading-3 {
  font-size: 6vw;
}

.heading-4 {
  font-size: 3vw;
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 14vw;
  }

  h2 {
    font-size: 9vw;
  }

  .section {
    background-position: 65%;
  }

  .logo {
    width: 70%;
  }

  .link-block {
    font-size: 7vw;
  }

  .spacer {
    height: 10vw;
  }

  .white-text {
    font-size: 5vw;
  }
}


