@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #282b31;
  --line: #343840;
  --linear: linear-gradient(180deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  --white: #ffffff;
}

html {
  font-size: 10px;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  background-color: var(--bg-color);
  color: var(--white);
  width: 100%;
  display: flex;
  font-display: column;
  justify-content: center;
}

#main {
  width: 987px;
  border: 2px solid var(--line);
  padding: 5rem;
  margin: 5rem;
}

#main .header-top {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

#main .header-top img {
  display: inline-block;
  margin-right: 8rem;
  width: 34rem;
  height: auto;
}

#main .header-top h1 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
}

#main .header-top h1 > span {
  display: block;
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(0deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#main #header {
  margin: 4rem 0;
}

#main #header p {
  margin: 4rem 0;
}

#main .main-content {
  padding: 2rem 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

#main .main-content p {
  margin: 3rem 0;
}

#main .main-content .blockquote::before,
#main .main-content .blockquote::after {
  content: '"';
  font-size: 3rem;
  background: linear-gradient(0deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#main .main-content .highlight-content {
  font-size: 2rem;
  background: linear-gradient(0deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 3rem 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

#main .main-content .looper {
  padding: 5rem;
  background-image: url("assets/looper.svg");
  background-size: cover;
  background-position: center;
}

#main .footer {
  margin-top: 4rem;
}

#main .footer p {
  margin: 3rem 0;
}

#main .footer .footer-cta {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#main .footer .footer-cta h2 {
  line-height: 1.2;
  font-size: 2.6rem;
  background: linear-gradient(0deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#main .footer .footer-cta a {
  background: linear-gradient(0deg, #00ffd1 0%, #ba6bf8 50.52%, #f797ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline !important;
  /* display: block; */
}

#main .footer .footer-cta a.email {
  margin-right: 3rem;
}

#main .footer .credit {
  margin-top: 6rem;
  font-size: 1.4rem;
  color: var(--line);
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  #main {
    width: 700px;
  }
}

@media only screen and (max-width: 768px) {
  #main {
    width: 600px;
    padding: 3rem;
    margin: 2rem auto;
  }

  #main .header-top img {
    display: inline-block;
    margin-right: 6rem;
    width: 24rem;
  }

  #main .header-top h1 {
    font-size: 1.6rem;
  }

  #main .header-top h1 > span {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  p {
    font-size: 1.6rem;
  }

  .highlight-content {
    font-size: 1.6rem !important;
  }

  #main .footer .footer-cta h2 {
    line-height: 1.2;
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 500px) {
  #main {
    padding: 0 2rem;
    width: 90%;
    margin: 5px;
  }

  #main .header-top {
    align-items: flex-start;
    flex-direction: column;
  }

  #main .header-top img {
    display: inline-block;
    margin-right: 0 !important;
    width: 20rem;
    margin-bottom: 2rem;
  }

  #main .header-top h1 {
    font-size: 1.8rem;
  }

  #main .header-top h1 > span {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  #main #header p {
    margin: 2rem 0;
  }

  #main .main-content .blockquote::before,
  #main .main-content .blockquote::after {
    font-size: 2rem;
  }

  p {
    font-size: 1.4rem;
    margin: 1rem 0 !important;
  }

  .highlight-content {
    font-size: 1.4rem !important;
  }

  .looper {
    display: none;
  }

  #main .footer {
    margin-top: 2rem;
  }

  #main .footer p {
    margin: 2rem 0;
  }

  #main .footer .footer-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  #main .footer .footer-cta h2 {
    line-height: 1.4;
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  #main .footer .footer-cta a {
    font-size: 1.4rem;
  }

  #main .footer .footer-cta a.email {
    margin-right: 2rem;
  }

  #main .footer .credit {
    margin-top: 10rem;
  }
}
