@font-face {
  font-family: "poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "unbounded";
  src: url("../fonts/Unbounded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e1014;
  color: #ffffff;
}

header img {
  display: block;
  margin: 75px 0 0 200px;
}

h1 {
  font-size: 64px;
  font-family: "unbounded", sans-serif;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
}

h1 span {
  color: #9747ff;
}

p {
  font-size: 24px;
  font-family: "poppins", sans-serif;
  text-align: center;
  margin: 24px auto 0;
  width: 792px;
}

a {
  font-family: poppins, sans-serif;
  font-size: 24px;
  background-color: #9747ff;
  color: #ffffff;
  text-decoration: none;
  width: 340px;
  height: 66px;
  display: block;
  text-align: center;
  line-height: 66px;
  border-radius: 36px;
  margin: 40px auto;
  cursor: pointer;
}

a:hover {
  background-color: #8233e8;
}

section img {
  display: block;
  width: 792px;
  height: 446px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header img {
    margin: 65px 0 0 60px;
  }

  p {
    width: 648px;
  }
}

@media (max-width: 395px) {
  header img {
    margin: 32px 0 0 16px;
  }
  h1 {
    font-size: 40px;
  }
  p {
    font-size: 20px;
    width: 340px;
  }
  a {
    font-size: 20px;
    width: 249px;
  }
  section img {
    width: 350px;
    height: 202px;
  }
}
