body {
  font-family: 'Segoe UI', sans-serif;
  background: url('BG.gif') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 1em;
  color: #0f0e0e;
  position: relative;
  transition: background-color 0.3s ease;
}

.profile-card {
  text-align: center;
  background-color: rgba(20, 13, 13, 0.8);
  padding: 20px;
  width: 350px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(237, 238, 237, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
}

.profile-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border: 5px solid #10dd3c;
  transition: transform 0.3s ease;
}

.profile-card img:hover {
  transform: rotate(10deg);
}

.profile-card h2 {
  margin-bottom: 10px;
  font-weight: bold;
  color: #fcfbf9;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.profile-card h2:hover {
  color: #10dd3c;
}

.profile-card p {
  line-height: 1.7;
  font-size: 15px;
  color: #e5f0e5;
  transition: color 0.3s ease;
}

.profile-card p:hover {
  color: #3498db;
}

.profile-card p span {
  font-weight: bold;
  color: #e5f0e5;
}

.home-button {
  position: absolute;
  top: -35px;
  left: -600px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.home-button:hover {
  background-color: #2980b9;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.7);
}

.home-button:active {
  transform: scale(1);
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3498db;
}
