* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: rgb(85, 83, 83);
  background-color: #ebeae6;
}

header {
  width: 100%;
  margin: 20px auto;
}
.hero {
  text-align: center;
}

h2 {
  text-align: center;
  margin-top: 50px;
}

.title {
  color: rgb(184, 12, 184);
}

.hero img {
  border-radius: 8%;
  display: flex;
  margin: 20px auto;
  width: 260px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 30px;
}

nav li a {
  color: rgb(184, 12, 184);
  padding: 20px;
  text-decoration: none;
}

.alignleft {
  font-weight: 600;
  font-size: 50px;
}

.socials ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 20px;
}

.socials li a {
  padding: 20px;
  text-align: center;
  color: rgb(184, 12, 184);
}

.development,
.design {
  display: flex;
}

.projects img {
  width: 200px;
  height: 130px;
  object-fit: contain;
}

.projects {
  width: 100%;
  padding: 50px;
  text-align: center;
}

.projects a {
  text-decoration: none;
  color: black;
  border: 1px solid cyan;
  padding: 10px;
  color: rgb(184, 12, 184);
}
.projects h4 {
  color: rgb(87, 3, 87);
}

.projects p {
  font-size: 16px;
  padding-bottom: 10px;
}

hr {
  width: 90%;
}

@media (max-width: 992px) {
  .development,
  .design {
    display: flex;
    flex-direction: column;
  }

  .socials ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .socials ul li {
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .hero p {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .development,
  .design {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .development,
  .design {
    display: flex;
    flex-direction: column;
  }
  .socials ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .socials ul li {
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .hero p {
    width: 100%;
    text-align: center;
  }
}
