:root {
  --text: #58595b;
  --primary: #6593a6;
  --secondary: #f2c063;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  background-image: url("assets/pause.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 8rem) 8rem;
  background-size: 6rem;
}
.page-container {
  margin: 0px auto;
  max-width: 80%;
}
.hero {
  margin: 16rem 10rem;
  text-align: left;
}
.info {
  margin: 0 auto;
  max-width: 30rem;
}
.contact {
  margin: 3rem 0;
}
.icon__img {
  height: 2rem;
  width: auto;
  margin: 0 0.8rem;
}
.icon__img:hover {
  filter: opacity(0.8);
}
.text--bold {
  font-weight: 500;
}
.text--extra-bold {
  font-weight: 800;
}
.text--primary {
  color: var(--primary);
}
.text--secondary {
  color: var(--secondary);
}
.text--h1 {
  font-size: 5rem;
}
.text--h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
}
.text--no-decoration {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  body {
    background-position: calc(100% - 3rem) 3rem;
    background-size: 4rem;
  }
  .hero {
    margin: 10rem 0 6rem 0;
  }
}
