.contact {
  position: fixed;
  background-color: rgb(255, 255, 255);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

#overflow {
  display: none;
}

#mail p {
  text-align: right;
  color: black;
  cursor: pointer;
}

#mail p:after {
  background-color: #a2a2a2;
  display: block;
  content: "";
  height: 1px;
  width: 0%;
  margin: 2px 0;
  -webkit-transition: width .3s ease-in-out;
  -moz--transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
}

#mail p:hover:after,
#mail p:focus:after {
  width: 100%;
}

#mail {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 370px;
  height: 380px;
  width: 100%;
  margin: 15% auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mail>div {
  margin: auto;
  text-align: center;
}

#mail>div>a {
  margin: 30px 0;
  color: black;
  font-size: 2vh;
  display: block;
}

.social {
  display: inline-flex;
}

.social img {
  width: 30px;
  margin: 0 5px;
}
