* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

body {
  width: 100%;
  height: 100vh;
  background-color: #1d1d1d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title {
  margin-bottom: 20px;
  color: #f3f3f3;
  font-size: 30px;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #382323;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;

}


.icon i {
  font-size: 29px;
  color: #f3f3f3;
  z-index: 999;
  opacity: 0.3;
  transition: transform 0.3s ease-in-out, visibility 5s, opacity 0.5s ease-in-out;
}

.icon::before {
  content: "";
  display: block;
  width: 30px;
  padding: 0 3.5px;
  height: 120%;
  background-color: #6666666e;
  transform: rotate(-45deg) translateX(-85px);
  position: absolute;
  left: 18.5px;
  transition: transform 0.3s ease-in-out;
}

.icon:hover i {
  opacity: 1;
  transform: rotate(360deg);
}

.icon:hover.icon::before {
  transform: rotate(-45deg) translateX(-5px);
}