@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

.title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #ee6c4d;
  text-align: center;
  padding-block: 1%;
}

.nav-container {
  margin: 0 auto;
  background-color: #293241;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  width: 70%;
}

.nav-list li {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-list a {
  text-decoration: none;
  color: white;
}

.nav-list li a:hover {
  color: #ee6c4d;
}

header img {
  max-height: 80vh;
  width: 100%;
  object-fit: cover;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
  margin-top: 7%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 7%;
}

.about h3 {
  font-family: "Oswald", sana-serif;
  font-weight: 500;
  font-size: 2em;
  color: #ee6c4d;
}

.about p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1em;
  text-align: justify;
}

.about div {
  width: 300px;
  /* height: fit-content; */
  display: flex;
  flex-direction: column;
  justify-content: start;
  /* align-items: center; */
  gap: 2rem;
}

.projects {
  background-color: #293241;
  display: flex;
}

.projects img {
  max-width: 50%;
}

.projects p,
li {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.5;
}

.projects h3 {
  color: #ee6c4d;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2em;
  margin-bottom: 1rem;
}

.projects ul {
  list-style: inside;
}

.projects-text {
  padding: 3%;
  line-height: 1.3;
}

.contacts {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
}

.contacts h3 {
  color: #ee6c4d;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 2em;
}
.contacts-list {
  list-style: none;
}
.contacts-list li {
  color: #293241;
  font-weight: 300;
}

footer {
  background-color: #ee6c4d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 8%;
  padding-top: 3%;
  padding-bottom: 3%;
}

footer h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2em;
  color: #293241;
}

footer ul li {
  list-style: none;
  line-height: 1.5;
  cursor: pointer;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  color: #293241;
}

@media screen and (max-width: 500px) {
  .nav-list li {
    font-size: 0.9em;
  }
  .about {
    flex-wrap: wrap;
  }

  .projects {
    flex-wrap: wrap;
    text-align: center;
  }

  .projects img {
    max-width: 100%;
  }

  .contacts {
    flex-wrap: wrap;
  }
}
