body {
  margin: 0;
  padding: 0;
  height: 800vh;
  overflow-x: hidden;
}

.bg {
  background-image: url("bgmod2.jpg");
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
}

.panelCon {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99990;
  max-width: 400px;
}
.panel {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-size: 30px;
  line-height: 35px;
}
.title {
  font-size: 60px;
  margin-top: 400px;
  text-align: center;
  color: white;
  text-shadow: 0px 6px 4px black;
}
.social-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.date {
  font-size: 30px;
  color: white;
  text-shadow: 0px 3px 2px black;
  margin: 12px 0;
}
.about {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  padding: 22px 20px;
  text-shadow: 2px 2px 1px black;
}

.about h2 {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.about p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.about p:last-child {
  margin-bottom: 0;
}
