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

body {
  margin-top: 100px;
}

h2 {
  font-size: 48px;
  margin: 0;
  margin-top: 30px;
}
h1 {
  font-size: 95px;
  margin: 0px;
}

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

.info {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
#contact {
  text-decoration: none;
  margin: 20px;
  margin-bottom: 50px;
  margin-left: 0;
  border-radius: 4px;
  padding: 20px 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: var(--box-shadow);
}
#about {
  text-decoration: none;
  margin: 20px;
  margin-bottom: 50px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  padding: 20px 15px;
  background-color: white;
  color: var(--primary-color);
}
#content {
  display: flex;
  margin-top: 30px;
}

#content p {
  margin: 10px;
}

#mail-to {
  display: flex;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 28px;
}
#mail-to:hover {
  text-decoration: underline;
}
.body {
  margin-top: 100px;
}
p {
  font-size: 18px;
  line-height: 1.5;
}

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

  h2 {
    font-size: 32px;
    text-align: center;
  }

  p {
    text-align: center;
  }

  .center {
    display: flex;
    justify-content: center;
  }
}
