* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: black;
  overflow: hidden;
}
html {
  display: grid;
  place-items: center;
}

.vertical-center {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.shmcr {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  font-size: 10vh;
  border-right: 3px solid black;
  animation: typist 10s infinite, caret 1.2s infinite step-end;
  white-space: nowrap;
  overflow: hidden;
}
.wrapper {
  position: absolute;
  padding-top: 20%;
  top: 20%;
  vertical-align: middle;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wrapper .button {
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 0 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.wrapper .button .icon {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
}
.wrapper .button:nth-child(1):hover .icon {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.wrapper .button:nth-child(2):hover .icon {
  background: linear-gradient(
    45deg,
    #4078c0,
    #6e5494,
    #bd2c00,
    #c9510c,
    #6cc644,
    #fafafa
  );
}
.wrapper .button:nth-child(3):hover .icon {
  background: linear-gradient(160deg, #fffc00, #ffffff);
}
.wrapper .button:nth-child(4):hover .icon {
  background: linear-gradient(120deg, #1db954, #191414);
}
.wrapper .button .icon i {
  font-size: 25px;
  line-height: 60px;
}
.wrapper .button span {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
}
.fab {
  color: black;
}
@keyframes caret {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}
@keyframes typist {
  0% {
    width: 0ch;
  }
  30% {
    width: 6.25ch;
  }
  80% {
    width: 6.25ch;
  }
  90% {
    width: 0ch;
  }
  100% {
    width: 0ch;
  }
}
