* {
  font-family: "Montserrat", sans-serif;
  
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


html,
body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(315deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 1) 52%, rgba(0, 0, 0, 1) 100%);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 50px;
}

.dots {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.box {
  
  width: 33.3%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  box-shadow:0 0 30px rgba(0, 0, 0, 0.3) inset;
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  z-index: 1;
}

.glowing-curve {
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: 
    radial-gradient(200% 200% at 50% -20%, rgba(64, 94, 123, 0.12) 0%, rgba(0, 132, 255, 0.084) 20%, rgba(64, 94, 123, 0.036) 40%, rgba(0, 0, 0, 0) 60%), 
    radial-gradient(180% 180% at 15% 50%, rgba(155, 143, 102, 0.08) 0%, rgba(155, 143, 102, 0.048) 30%, rgba(155, 143, 102, 0.016) 50%, rgba(0, 0, 0, 0) 70%), 
    radial-gradient(160% 160% at 85% 50%, rgba(162, 124, 108, 0.05) 0%, rgba(162, 124, 108, 0.035) 25%, rgba(162, 124, 108, 0.015) 45%, rgba(0, 0, 0, 0) 65%);
  border-bottom-left-radius: 100% 50%;
  border-bottom-right-radius: 100% 50%;
  box-shadow: 0 0 10000px rgba(255, 255, 255, 0.2),
  0 0 10000px rgba(255, 255, 255, 0.1),
  0 0 10000px rgba(255, 255, 255, 0.1); 
  z-index: 0;
  pointer-events: none;
}

.main-text {
  font-size: 4.3rem;
  font-weight: bold;
  color: #ffffff;
  padding-top: 40px;
  pointer-events: none;
}

.description {
  font-size: 1.2rem;
  color: #b9b9b9;
  margin-top: 10px;
  pointer-events: none;
}

.about-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ddd;
  margin-top: 30px;
  pointer-events: none;
  
}

.about-description {
  font-size: 1rem;
  color: #8a8a8a;
  margin-top: 10px;
  pointer-events: none;
  font-weight: bold;
}
.skills-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ddd;
  margin-top: 30px;
  pointer-events: none;
  padding-bottom: 5px;
  
}

#skills {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

[id] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.skill-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
  text-align: center;
}

.skill-item svg {
  margin-right: 6px;
  fill: #000000;
}

.skill-item:hover {
  background-color: #b8b8b8;
  transform: translateY(-2px);
}
