* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 62.5%;
  font-family: "Helvetica", sans-serif;
  background-color: #222;
  color: whitesmoke;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
main .card {
  width: 90%;
  max-width: 320px;
  min-height: 420px;
  border: 2px solid #4CAF50;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background: #0a0a0a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  gap: 2rem;
  transition: transform 0.3s ease;
}
main .card:hover {
  transform: translateY(-5px);
}
main .card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #444;
}
main .card .top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4CAF50;
}
main .card .top h4 {
  font-size: 1.8rem;
  color: #4CAF50;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
main .card .top h4:hover {
  background: rgba(76, 175, 80, 0.2);
}
main .card .top h4:hover i {
  transform: scale(1.1);
}
main .card .top h4 i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
main .card .mid {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}
main .card .mid h2 {
  font-size: 1.6rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 1rem;
}
main .card .mid h2 span {
  font-size: 1rem;
  color: #999;
  background: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
}
main .card .mid h3 {
  font-size: 2.2rem;
  color: #fff;
}
main .card .mid p {
  font-size: 1.4rem;
  color: #bbb;
  display: flex;
  gap: 1rem;
}
main .card .mid p span {
  background: #333;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
}
main .card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
}
main .card .bottom .b-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .card .bottom .b-left p:first-child {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4CAF50;
}
main .card .bottom .b-left p:last-child {
  font-size: 1.4rem;
  color: #aaa;
}
main .card .bottom button {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  white-space: nowrap;
  border-radius: 0.8rem;
  border: none;
  background: #4CAF50;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .card .bottom button:hover {
  background: #45a049;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

@media (max-width: 480px) {
  .card {
    width: 95%;
    padding: 1.5rem;
  }
  .bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .bottom button {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
