body {
    background-color: black;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

h1, p {
    color: #fff;
    margin: 0px;
}

p {
    font-size: 14px;
}

.container-icons {
    display: flex;
    gap: 10px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

svg {
    height: 52px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  padding: 17px 20px;
  border: 3px solid blueviolet ;
  width: 200px;
  font-size: 22px;
  letter-spacing: 4px;
  overflow: hidden;
  z-index: 1;
  transform: color 1s, box-shadow 1s;
  transition-delay: 0s, 1s;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
}

a:hover {
  border: 3px solid white ;
}

a::before {
  content: '';
  height: 65px;
  width: 0px;
  transform: skew(35deg);
  position: absolute;
  left: -65px;
  background: blueviolet;
  transition: all 1s;
  z-index: -1;
}
a:hover::before {
  width: 400px;
}