body {
  background-image: linear-gradient(to right, #804852, rgb(233, 230, 230));
}


.nav {
  background-image: linear-gradient(to right, #804852, rgb(233, 230, 230));
}


.text {
  text-align: center;
  font-size: 35px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.784);
}

.contact {
  background: linear-gradient(#ffdad5, #fff7f9);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left-title h2 {
  font-weight: 600;
  color: white;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: black;
  border-radius: 10px;
  margin-bottom: 20px;
}


.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus {
  border: 2px solid black;
}

.contact-inputs::placeholder {
  color: black;
}


.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: black;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #804852, #756357);
  cursor: pointer;
}


ul.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 100%;
}


ul.grid li img {
  width: 70px;
  height: auto;
  margin-top: 15px;
}


.bt-cont,
.bt-resume {
  background-image: linear-gradient(to right, #804852, rgb(233, 230, 230));
  color: white;
}


@media (max-width: 800px) {
  .contact-inputs {
    width: 80vh;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  ul.grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  ul.grid li img {
    width: 60px;
  }
}


/*Project button*/
.sh-btn {
  background-image: linear-gradient(to right, #804852, rgb(233, 230, 230));
}