#container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#container section {
  min-width: 530px;
  max-width: 768px;
}

#container h1 {
  font-size: 72px;
  margin-bottom: 10px;
  text-align: center;
}

#container h6 {
  font-size: 32px;
  margin-top: 0;
  text-align: center;
}

.noMargin {
  margin: 0;
}

.subtitle {
  font-size: 14px;
  margin-top: 5px;
}

.resume {
  margin-top: 50px;
}

.resume > h3 {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  body {
    overflow: auto;
  }

  #container section {
    min-width: auto;
  }
}

#main-nav a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  margin-right: 15px;
}

.team {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.team-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team-card > .team-member {
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
}

.team-card > .team-member-desc {
  font-size: 13px;
  margin-top: 5px;
  font-style: italic;
}

.team img {
  border-radius: 50%;
  width: 128px;
}

.summary {
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input {
  margin-bottom: 10px;
}

.btn-send-container {
  text-align: center;
  margin-top: 20px;
}

.btn-send {
  width: 150px;
  height: 60px;
  border-radius: 50px;
  background-image: linear-gradient(135deg, #81fbb8 0%, #28c76f 100%);
  box-shadow: 0 20px 30px -6px rgba(60, 211, 128, 0.5);
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.btn-send:hover {
  transform: translatey(10px);
  box-shadow: none;
}

.btn-send:active {
  opacity: 0.5;
}
