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

body {
  margin-top: 100px;
  background: rgb(239, 142, 203);
  color: rgb(78, 75, 75);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: 96px;
}

h2 {
  font-size: 48px;
  color: rgb(138, 6, 112);
  text-align: center;
}

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

.projects-title {
  font-size: 52px;
  opacity: 0.7;
  color: blueviolet;
  text-align: center;
  margin: 30 0;
  display: block;
}

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

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

.navigation-links a {
  margin: 20px;
  align-items: right;
}

.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;
}

.secondary-link {
  border-radius: 4px;
  padding: 20px 15px;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.homepage-link {
  color: var(--primary-color);
  text-align: center;
  display: block;
}

.about-paragraphs {
  margin: 30px 0;
}

.container {
  text-align: center;
}

.align-center {
  text-align: center;
  justify-content: center;
  margin: 30 30 30 30;
}

button {
  display: inline-block;
  justify: center;
  margin: 10px;
  padding: 10px 20px;
  background-color: blue;
  text-decoration: none;
  border-radius: 4px;
  color: white;
}

.project-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  text-decoration: none;
  border-radius: 4px;
}

a {
  color: white;
}

a:hover {
  color: pink;
}

p {
  background-color: lightcyan;
  padding: 20px;
}
.about-paragraphs p {
  margin: 10px;
}

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

.email-link:hover {
  text-decoration: underline;
  color: pink;
}

nav ul {
  padding: 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}

.nav-link:hover {
  color: pink;
}

footer .contact-box {
  display: flex;
  font-size: 16px;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgb(236, 242, 242);
}

.contact-button {
  background-color: rgb(174, 107, 237);
  color: white;
  text-decoration: bold;
  padding: 10px 20px;
  border-radius: 12px;
}

.social-icons {
  display: flex;
  justify-content: space-evenly;
  background: gray;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 20px;
  margin-right: 5px;
  margin-left: 5px;
}

.mail-link {
  color: black;
  font-size: 14px;
  text-decoration: none;
}

.author {
  font-size: 12px;
  color: rgb(78, 75, 75);
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 36px;
    line-height: 1;
  }

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

  p {
    text-align: center;
  }

  .projects {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .project-link {
    text-align: center;
    display: block;
    margin: 0 15px;
  }

  button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
  }
}
