* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background: #674baf url("./img/bg-desktop.svg");
  background-size: 170vh;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li {
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 20px;
  margin: 0 5px;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
}

nav ul li a {
  color: #fff;
}

.main {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 2rem;
}

.tab {
  background-color: #fff;
  max-width: 900px;
  border-radius: 20px;
}

.tab nav {
  background-color: #000;
  color: #fff;
  padding: 20px 40px;
  border-radius: 20px 20px 0 0;
}

.content > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

.content > div > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.content > div > div:first-of-type {
  padding: 0 30px;
}

.content > div > div:first-of-type {
  flex-direction: column;
}

.content > div > div ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin-top: 1.5rem;
}

.content > div > div ul li {
  padding: 0 3px;
  color: #808080;
}

.content > div:first-of-type ul li:nth-child(1),
.content > div:first-of-type ul li:nth-child(2),
.content > div:first-of-type ul li:nth-child(3) {
  color: red;
}

.content > div:nth-child(2) ul li:nth-child(1),
.content > div:nth-child(2) ul li:nth-child(2),
.content > div:nth-child(2) ul li:nth-child(3) {
  color: red;
}

.content > div:last-of-type ul li:nth-child(1),
.content > div:last-of-type ul li:nth-child(2),
.content > div:last-of-type ul li:nth-child(3),
.content > div:last-of-type ul li:nth-child(4) {
  color: red;
}

.content span {
  font-size: 7rem;
}

.content > div:first-child span {
  background: linear-gradient(to right, #30cfd0 0%, #330867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content > div:nth-child(2) span {
  background: linear-gradient(to right, #524ffa 0%, #cf23cf 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.content > div:last-child span {
  background: linear-gradient(to right, #ffa970 0%, #cf23cf 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.content h1 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.text {
  color: #fff;
  padding: 0 20px;
}

.text h1 {
  font-size: 3rem;
  max-width: 500px;
  padding-bottom: 2rem;
}

.text p {
  max-width: 500px;
  font-size: 1.2rem;
  padding-bottom: 4rem;
}

.text button {
  background: #fff;
  font-size: 1.5rem;
  padding: 20px 40px;
  border-radius: 40px;
  border: none;
  box-shadow: 2px 2px 20px 1px #000;
}

@media screen and (max-width: 992px) {
  .content span {
    font-size: 3.5rem;
  }

  .content h1 {
    font-size: 1.2rem;
  }

  .content > div ul li {
    font-size: 0.8rem;
  }

  .text h1 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }

  .text p {
    font-size: 1rem;
    padding-bottom: 2rem;
  }

  .text button {
    background: #fff;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  nav {
    padding: 40px 20px;
  }

  .content span {
    font-size: 4rem;
  }

  .content > div > div:last-of-type {
    display: none;
  }

  .content > div > div:first-of-type {
    padding-right: 0;
  }

  .content h1 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .main {
    flex-wrap: wrap;
  }

  .content > div > div:last-of-type {
    display: inline-flex;
  }

  .text {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  nav {
    padding: 20px;
  }

  nav ul {
    display: none;
  }

  .content > div > div:last-of-type {
    display: none;
  }
}
