main {
  background-image: url(/img/textura5.jpg);
}

/*----------------- ABOUT SECTION --------------------*/
.first-section {
  border: 1px solid white;
}
.about-section {
  display: flex;
  align-items: center;
  padding: 5rem 0rem;
  animation: show .2s .6s forwards;
  opacity: 0;
}
.about-section figure img {
  width: 100%;
}
.about-section figure {
  width: 50%;
}
.about {
  width: 50%;
  color: white;
}

h2 {
  font-size: 4rem;
  font-family: "Arvo";
  margin-bottom: 2rem;
}
.about-section p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 2.6rem;
}
.about-section p:first-of-type {
  font-weight: 500;
}

/*----------------- WORK SECTION --------------------*/
.work-section {
  background-image: url(/img/textura4.jpg);
  padding: 10rem 0rem;
  text-align: center;
}

.work-container {
  animation: show .2s .8s forwards;
  opacity: 0;
}

.grid-work {
  margin-top: 5rem;
}

.work {
  background: white;
  border-radius: 2rem;
  border: 1px solid white;
}
.work figure,
.work figure img {
  width: 100%;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
}

.work h3 {
  font-size: 2rem;
  margin: 2rem 0rem;
  color: black;
}

.work-section span {
  font-size: 1.5rem;
}

.work button {
  background: black;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  transition: all .15s;
}
.work button:hover {
  opacity: .6;
}
.work button a {
  font-size: 1.8rem;
  font-weight: 500;
}
.work-button {
  padding-bottom: 2rem;
}

.work p {
  font-size: 1.8rem;
  padding: 0rem 4rem;
  margin-bottom: 2rem;
  color: black;
}

.grid-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.more-work {
  background-color: white;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  margin-top: 4rem;
  transition: all .15s;
}
.more-work:hover {
  background: rgb(165, 160, 160);
}
.more-work a {
  font-size: 1.8rem;
  font-weight: 500;
  color: black;
}

/*----------------- CONTACT SECTION --------------------*/

.contact-section {
  padding: 10rem 0rem;
  text-align: center;
  border: 1px solid white;
}

.contact-container {
  animation: show .2s 1s forwards;
  opacity: 0;
}

.contact-section form label{
  display: block;
  font-weight: 500;
  font-family: "arvo";
  font-size: 1.8rem;
  text-align: left;
}
.contact-section form {
  width: min(50rem, 90%);
  margin: 0rem auto;
  text-align: center;
  padding: 2rem;
  background: black;
  border-radius: 2rem;
}
.contact-section form div {
  margin-bottom: 2rem;
}

.contact-section label,
.contact-section input,
textarea {
  width: 100%;
}

.contact-section input,
textarea {
  color: black;
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.contact-section input:focus,
textarea:focus {
  outline: none;
}

.contact-section form button {
  background: white;
  color: black;
  padding: 1rem 2rem;
  border: none;
  border-radius: .7rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.contact-section .social-network {
  flex-wrap: wrap;
}