/* GLOBAL SETTINGS */
body,
html {
  background-color: #212425;
  color: white;
}

* {
  margin: 0 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* CONTENT */

.main-wrapper {
  width: 100vw;
  height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 100vh;
}

.profile-pic {
  margin-bottom: 100px;
}

.profile-pic-image {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.247);
}

.icon {
  width: 32px;
  height: 32px;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 20%;
  width: 400px;
  margin: 0 auto;
  padding: 0;
}

.socials-item {
  width: 45px;
  height: 45px;
  filter: grayscale(100%);
  transform: scale(100%);
  opacity: 50%;
  transition: all 0.2s;
}

.socials-item:hover {
  opacity: 100%;
  filter: none;
  transform: scale(120%);
  cursor: pointer;
}

.description {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.568);
}

.title {
  font-family: "Audiowide", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  animation: glitchShadow 3s infinite;
}

@keyframes glitchShadow {
  0%,
  95%,
  100% {
    text-shadow: 0 0 5px rgba(255, 0, 128, 0.4);
  }
  96% {
    text-shadow: 6px 0 5px rgba(0, 255, 255, 0.4),
      -2px 0 5px rgba(255, 0, 128, 0.4);
  }
  98% {
    text-shadow: -4px 0 5px rgba(0, 255, 255, 0.4),
      3px 0 5px rgba(255, 0, 128, 0.4);
  }
}

@media (max-width:500px) {
    .content {
        width: 100vw;
    }
    .profile-pic-image {
        width: 230px;
        height: 230px;
    }
    .socials {
        width: 250px;
    }
}