:root {
  --primary-color: #6c63ff;
  --secondary-color: #f5f2fe;
  --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

h1,
h2,
h3 {
  margin: 0;
  text-align: center;
}

h1 {
  font-size: 96px;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
  margin-top: 60px;
  margin: 0;
}
.hello {
  margin-top: 100px;
}

h3 {
  font-size: 24px;
  opacity: 0.7;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.buttons a {
  margin: 20px;
  padding: 20px 15px;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 4px;
}

.btn-contact {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: var(--secondary-color);
}

.btn-about {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.h1-about {
  font-size: 96px;
  margin-top: 100px;
}

.homepage {
  margin-top: 60px;
  color: var(--primary-color);
  text-align: center;
  display: block;
}

.description {
  text-align: center;
  margin-top: -20px;
}
.about-paragraphs {
  display: flex;
  margin: 30px 10px;
  justify-content: center;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

.email {
  display: flex;
  justify-content: center;
  color: var(--primary-color);
  font-size: 28px;
  text-decoration: none;
  margin-bottom: 52px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.primary-link {
  border-radius: 4px;
  padding: 20px 15px;
  text-decoration: none;
  text-transform: capitalize;
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: white;
}

@media (max-width: 900px) {
  h1 {
    font-size: 48px;
    line-height: 1.5;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  h2 {
    text-align: center;
    font-size: 32px;
  }

  .primary-link {
    display: block;
    text-align: center;
    margin: 0 20px;
  }
}
