.menu .link:nth-child(1)::before {
  transition: width 400ms ease-in-out;
  width: 3px;
}
.menu .link:nth-child(1):hover:before {
  transition: width 400ms ease-in-out;
  width: 48px;
}
.menu .link:nth-child(2)::before {
  transition: width 400ms ease-in-out;
  width: 65px;
}
.menu .link:nth-child(3):hover::before {
  transition: width 400ms ease-in-out;
  width: 45px;
}

.contact {
  width: 60%;
  min-width: 250px;
  max-width: 400px;
  height: 70vh;
  min-height: 400px;
  margin: 2em auto;
  padding: 0.4em;
  border: 2px solid gray;
  background-color: lightgray;
  overflow: hidden;
}
.contact form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}
.contact form label:nth-child(2) {
  margin-top: 2em;
}
.contact form input {
  position: relative;
  height: 2em;
  margin-bottom: 1em;
  border-radius: 5px;
  outline: 0;
  background-color: whitesmoke;
  border: none;
  font-size: 1.2rem;
}
.contact form textarea {
  position: relative;
  height: 5em;
  outline: 0;
  border: none;
  border-radius: 5px;
}
.contact form input:focus,
.contact form textarea:focus {
  border: 1px solid gray;
}
.contact form input:last-child {
  margin-top: 2em;
}
.contact form input:hover:last-child {
  background-color: rgba(188, 188, 235, 0.484);
  color: #fff;
  transition: background-color 500ms ease, color 300ms ease-in;
}/*# sourceMappingURL=contact.css.map */