body {
  animation: fadeInDown 3s;
  background-color: #000000;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 130px;
  margin-top: 100px;
  flex-wrap: nowrap;
}

.main .networks {
  display: flex;
  justify-content: center;
}

.main .networks a {
  color: #fff;
  line-height: 7px;
  margin: 25px 20px;
  font-size: 25px;
}

.main img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  border: 8px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  display: block;
}

.main p {
  display: inline-block;
  position: center;
  margin: 5px;
  font-size: 17px;
  font-family: monospace, serif;
  white-space: nowrap;
  animation: write 3s forwards;
  color: #fff;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 10px;
}

.buttons .btn {
  padding: 15px 40px;
  border: none;
  outline: none;
  color: #FFF;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}

.buttons .btn::after {
  content: '';
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.buttons .btn::before {
  content: "";
  background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height:  calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 1;
}

.buttons .btn:active:after {
  background: transparent;
}

.buttons .btn:active {
  color: #000;
  font-weight: bold;
}

@keyframes glowing {
  0% {
   background-position: 0 0;
  }
  50% {
   background-position: 400% 0;
  }
  100% {
   background-position: 0 0;
  }
}

@keyframes fadeInDown {
  from {
   transform: translate3d(0, 1000px, 0)
  } to {
   transform: translate3d(0, 0, 0);
   opacity: 1
  }
}