body {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../img/bg.jpg');
  background-blend-mode: luminosity;
  /* Adjust the alpha value for opacity */
}

.pill {
  /* background-color: rgba(255, 186, 0, 0.2); */
  padding: 5px 15px;
  border-radius: 8px;
  /* color: #04D9FF; */
  text-wrap: nowrap;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.name {
  line-height: 0.5em;
}

.links a {
  background-color: rgba(255, 186, 0, 0.2);
  color: #04D9FF;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04D9FF;
  text-decoration: none;
  transition: 0.5s;
  font-size: 30px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.links a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.description {
  opacity: 0.8
}

#cursor {
  position: absolute;
  background: #fff;
  opacity: .07;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(1);
}

.website {
  text-decoration: none;
}

.website h5 {
  color: rgba(226, 232, 240);
}

.website-item {
  position: relative;
}

.overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #04D9FF;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.overlay span {
  padding: 10px 20px;
}

.website-item:hover .overlay {
  display: flex;
}

.website-item,
.website-item img {
  border-radius: 10px;
}

.resume {
  text-decoration: none;
  color: rgba(4, 215, 255, 1);
  transition: 0.5s;
  padding: 10px 20px;
}

.resume:hover {
  color: rgba(4, 215, 255, 0.5);
}