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;
  width: 200px;
  font-size: 22px;
  letter-spacing: 4px;
  border: 3px solid blueviolet;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  border-radius: 10px;
  background-image: linear-gradient(to right, blueviolet, transparent);
  background-size: 200% 100%;
  background-position: right;
  background-color: black;
  padding: 20px;
}

a:hover {
  color: white;
  background-image: linear-gradient(to right, darkviolet, transparent);
  background-color: black;
}

a::before {
  content:'';
  height: 100%;
  width: 100%;
  background-image: linear-gradient(45deg, blueviolet, black);
  position: absolute;
  top: 0;
  left: -100%;
  transition: all 0.5s ease;
  z-index: -1;
}

a:hover::before {
  left: 0;
}