body {
  margin: 0;
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Unbounded','JetBrains Mono', monospace;
}
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(#1b003a, #000);
  z-index: -1;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
header {
  text-align: center;
}
.avatar {
  width: 120px;
  border-radius: 50%;
  border: 2px solid rgb(145, 5, 201);
}
h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}
p {
  color: #aaa;
}
.info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.block {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 1rem;
  flex: 1 1 250px;
  box-shadow: 0 0 10px #000000aa;
}
.projects {
  margin-top: 2rem;
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project {
  background: #111;
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid #333;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.project-icon {
  width: 48px;
  height: 48px;
}
.button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: #222;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.button:hover {
  background-color: #444;
}

.weather-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  color: white;
}

.weather-box img {
  width: 48px;
  height: 48px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}


.review-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}