@font-face {
  font-family: CormorantSC;
  src: url(/assets/fonts/CormorantSC-Regular.woff) format('woff');
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Regular.woff) format('woff');
  font-display: swap;
}

body {
  font-family: Roboto;
  font-size: min(2.2vw, 22px);
}

video {
  image-rendering: pixelated;
}

a {
  color: rgb(255, 255, 255);
}

article {
  overflow: auto;
}

ul {
  padding-left: 20px;
}

.aboutMe {
  float: left;
  display: block;
  margin-bottom: 12px;
}

.me {
  float: left;
  margin-right: 20px;
  border-radius: 10px 50px 10px 50px;
  filter: drop-shadow(5px 5px 5px #111000);
  width:300px;
  height:auto;
}

.subTitle {
  width: 100%;
  font-size: min(6.2vw, 48px);
  text-align: center;
  margin-bottom: 6px;
  font-family: CormorantSC;
  text-shadow: 6px 10px 18px rgba(113, 113, 113, 0.558);
}

.socials {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
  justify-content: center;
  font-family: CormorantSC;
  filter: drop-shadow(5px 5px 5px #111000);
}

.title {
  display:flex;
  align-self: center;
  font-style: normal;
  justify-content: center;
  font-family: CormorantSC;
  font-optical-sizing: auto;
  font-size: min(10.2vw, 120px);
  text-shadow: 5px 10px 18px rgba(113, 113, 113, 0.558);
}

.title2 {
  width: 100%;
  font-size: min(8.2vw, 109px);
}

.title.bbn {
  text-align: center;
}

.w {
  animation-name: wiggle;
  animation-duration:4000ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.techStack {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  font-size: min(2.2vw, 22px);
}

@media only screen and (max-width: 700px) {
  .me {
    width: 140px;
  }
}

@media only screen and (max-width: 400px) {
  .me {
    width: 80px;
  }
}

@keyframes wiggle {
  10% {
    transform: translateX(.5px) translateZ(.5px) rotate(.01deg);
  }
  20% {
    transform: translateX(-.2px) rotate(-.2deg);
  }
  30% {
    transform: translateX(.2px) rotate(.2deg);
  }
  40% {
    transform: translateX(-.2px) rotate(-.2deg);
  }
  50% {
    transform: translateX(0px) rotate(0deg);
  }
  60% {
    transform: translateX(0px) rotate(0deg);
  }
  70% {
    transform: translateX(0px) rotate(0deg);
  }
  80% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}