.contact {
  width: 90%;
  background-color: var(--g);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 10px;

  h2{
    text-align: center;
    padding-bottom: 1rem;
  }

  .socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;

    a {
      background-color: var(--l);
      padding: 0.5rem;
      border-radius: 5px;
      font-weight: 600;
      text-decoration: none;
      text-transform: capitalize;
      display: flex;
      align-items: center;
      gap: 0.5rem;


      img {
        width: 40px;
        height: 40px;
      }
    }

    
  }

  .form {
    background-color: var(--d);
    padding: 1rem;
    border-radius: 5px;
    color: aliceblue;

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      input {
        padding: 1rem;
        width: 100%;
      }

      textarea {
        padding: 1rem;
        width: 100%;
      }

      button {
        background-color: var(--l);
        padding: 0.5rem 0;

        
      }

      button:hover {
        background-color: var(--g);
        color: aliceblue;
        transition: all 0.2s ease-out;
        border-radius: 5px;
      }
    }
  }
}


/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  .contact {
    width: 80%;

    .info {
      display: flex;
      justify-content: space-evenly;

      .socials {
        width: 45%;
      }

      .form {
        width: 45%;
      }
    }

  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */