/* ┌─┐┌─┐┌┐┌┌┬┐┌─┐┌─┐┌┬┐ */
/* │  │ ││││ │ ├─┤│   │  */
/* └─┘└─┘┘└┘ ┴ ┴ ┴└─┘ ┴  */
#contact {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--default-background-color);
  padding-top: 1em;
}

#contact > ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#contact > ul > li {
  text-align: center;
  flex: 1 1 33%;
}


/*---------MOBILE---------*/
@media (max-width:800px) {
  #contact {
    padding: 0;
  }
  #contact > ul {
    flex-direction: column;
  }
  #contact span {
    font-size: 0.8em;
  }
  #contact > ul > li {
    margin-bottom: 20px;
  }
}

