body {
 margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url("image/background.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #eee;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background-color: rgba(15, 0, 40, 0.85);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(128, 0, 255, 0.5);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8000ff;
  box-shadow: 0 0 15px #8000ff;
  margin-bottom: 15px;
}

h1 {
  color: #c299ff;
  font-size: 2.5rem;
  margin: 0;
}

p {
  color: #ccc;
  font-size: 1.2rem;
}

h2 {
  color: #bb86fc;
  border-bottom: 1px solid #4a006e;
  padding-bottom: 5px;
  margin-top: 30px;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.skills span {
  background: #8000ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4f46e5; /* Фиолетовая кнопка */
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3730a3;
}