body {
  background-color: black;
}

.page-wrap {
  align-items: center;
  padding: 100px 0 0;
}

.experiences {
  z-index: 2;
}

li {
  color: white;
}

.tag {
  background-color: white;
  color: black;
  border-radius: 25rem;
  padding: 5px 15px;
  width: fit-content;
}

.all-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-content: center;
  padding: 50px;
}

.box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  padding: 50px;
  background-color: #1c1f2b;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.box:hover {
  transform: scale(1.03);
}

.box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  background: linear-gradient(#ff0000, #001aff);
  width: 3000px;
  height: 50%;
  translate: -50% -50%;
  animation: rotate 4s linear infinite;
}

.box::before {
  filter: blur(20px);
  opacity: 0.5;
}

.box::after {
  content: '';
  position: absolute;
  background: #1c1f2b;
  inset: 8px;
  border-radius: 20px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media screen and (orientation: portrait) {
  .all-box {
    display: inherit;
    padding: 20px 0;
  }

  .box {
    margin: 20px;
  }
}