body {
  margin: 0;
  padding: 0;
  font-family: "handjet",'Montserrat', Arial, sans-serif;
  background-color: #021b1a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.handjet {
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "ELGR" 1,
    "ELSH" 2;
}

.card {
  background-color: #03624c;
  width: 320px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 3px solid #032221;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid #032221;
  object-fit: cover;
}

.name {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f7f6;
}

.description {
  font-size: 1em;
  color: #f1f7f6;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1em;
  color: #f1f7f6;
  background-color: #032221;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
  background-color: #021b1a;
  transform: scale(1.1);
}