body{
  margin:0;
  font-family:monospace;
  background:#0a0f0a;
  color:#00ff9c;
  overflow-x:hidden;
}

/* THREE BACKGROUND */
canvas{
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
}

/* LAYOUT */
.container{
  text-align:center;
  padding:40px 20px;
}

/* TITLE */
.title{
  font-size:38px;
  text-shadow:0 0 15px #00ff9c;
}

/* PROFILE */
.profile{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid #00ff9c;
  box-shadow:0 0 25px #00ff9c;
  margin-bottom:15px;
}

/* ROLE */
.role{
  opacity:.8;
  margin-bottom:10px;
}

/* PROGRESS */
.progress{
  height:6px;
  background:#003d2a;
  margin:20px auto;
  width:260px;
  border-radius:20px;
}

.bar{
  height:100%;
  width:75%;
  background:#00ff9c;
  box-shadow:0 0 15px #00ff9c;
}

/* CERTIFICATES */
.certificates{
  margin-top:40px;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:20px;
}

.cert-grid img{
  width:100%;
  border-radius:10px;
  cursor:pointer;
  transition:.4s;
}

.cert-grid img:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #00ff9c;
}

/* LIGHTBOX */
#lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#000c;
  display:none;
  justify-content:center;
  align-items:center;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}
