body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background: linear-gradient(to right, rgba(232, 171, 89, 1), rgba(208, 135, 66, 1));
  padding: 60px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, 50px);
  }

  100% {
    transform: translate(0, 0);
  }
}

#title-name {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

#title-name {
  font-size: 28px;
  margin: 0;
}

#card {
  background: white;
  margin: 40px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
}

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

#card img {
  border-radius: 20px;
}

#card p {
  font-size: 18px;
  margin: 20px 0 10px 0;
}

#card a img {
  margin-top: 10px;
}

#contact {
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

#contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: rgba(232, 171, 89, 1);
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}