* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background: url(../images/bg-desktop.svg) no-repeat hsl(257, 40%, 49%);
  background-size: cover;
}
@media (max-width: 768px) {
  body {
    background: url(../images/bg-mobile.svg) no-repeat hsl(257, 40%, 49%);
    background-size: cover;
  }
}
main {
  padding: 4rem;
}
main .info {
  display: flex;
  gap: 5rem;
  margin: 5rem auto 1rem auto;
}
@media (max-width: 1000px) {
  main .info {
    flex-direction: column;
    text-align: center;
  }
}
main .info .huddle-info h1 {
  color: hsl(0, 0%, 100%);
  font-size: 3.4rem;
  margin-bottom: 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
@media (max-width: 425px) {
  main .info .huddle-info h1 {
    font-size: 2.4rem;
  }
}
main .info .huddle-info p {
  color: hsl(0, 0%, 100%);
  font-size: 1.4rem;
  max-width: 650px;
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 1000px) {
  main .info .huddle-info p {
    margin: 0 auto 2rem auto;
  }
}
main .info .huddle-info button {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: hsl(257, 40%, 49%);
  padding: 1rem;
  border-radius: 50px;
  max-width: 200px;
  width: 100%;
  border: none;
  box-shadow: 0 10px 13px hsl(257, 40%, 19%);
  transition: 0.3s ease;
}
main .info .huddle-info button:hover {
  background-color: hsl(300, 69%, 71%);
  color: hsl(0, 0%, 100%);
}
main .social-links {
  margin: 0 0 0 83%;
}
@media (max-width: 1000px) {
  main .social-links {
    margin: 3rem auto;
    text-align: center;
  }
}
main .social-links a,
main .social-links a:visited {
  color: hsl(0, 0%, 100%);
  font-size: 1.5rem;
}
main .social-links a i,
main .social-links a:visited i {
  margin-right: 1rem;
  border-radius: 50%;
  border: 2px solid hsl(0, 0%, 100%);
  padding: 1rem;
  transition: 0.3s ease;
}
main .social-links a i:hover,
main .social-links a:visited i:hover {
  color: hsl(300, 69%, 71%);
  border-color: hsl(300, 69%, 71%);
}
footer {
  text-align: center;
  color: hsl(0, 0%, 100%);
}
footer a,
footer a:visited {
  text-decoration: none;
  font-style: italic;
  font-weight: bold;
  color: hsl(0, 0%, 100%);
}
