@font-face {
  font-family: kei;
  src: url(./Bold\ Kei.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: kei;
  color: white;
}
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
}

/* Handle on hover */
::-webkit-scrollbar:hover {
  width: 15px;
}
body {
  overflow-x: hidden;
}
.container {
  background: #000;
  overflow-x: hidden;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.card {
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin: 10px;
  color: white;
}
.image {
  border-radius: 50%;
  border: 1px solid white;
  width: 270px;
  height: 270px;
  overflow: hidden;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.info h2 {
  letter-spacing: 3px;
}
.social {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  width: 80%;
}
.icon {
  height: 30px;
}
.social .fab {
  color: white;
}
.social .fab:hover {
  transition: 0.8s;
  text-shadow: 0 0 5px red, 0 0 10px red;
}
