.button {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-family: 'Anek Gujarati', sans-serif;

}

.button:before {
  content: "";
  background: linear-gradient(45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(15px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;

}

.main1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  margin: 0;
  height: 100vh;
}

#media-container {
  display: none;
  animation: shake 0.1s infinite;
  overflow: hidden;
  animation: fallFromCorners 4s infinitel;

}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-10px, 0);
  }

  20% {
    transform: translate(10px, 0);
  }

  30% {
    transform: translate(-10px, 0);
  }

  40% {
    transform: translate(10px, 0);
  }

  50% {
    transform: translate(-10px, 0);
  }

  60% {
    transform: translate(10px, 0);
  }

  70% {
    transform: translate(-10px, 0);
  }

  80% {
    transform: translate(10px, 0);
  }

  90% {
    transform: translate(-10px, 0);
  }

  100% {
    transform: translate(0, 0);
  }

}

@keyframes fallFromCorners {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }

  25% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translate(50%, -50%) rotate(0deg);
  }

  75% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-50%, 50%) rotate(360deg);
    opacity: 0;
  }
}




#photo {
  max-width: 100%;
  height: 100%;

}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}