h1, h2, h4 {
  font-family: helvetica;
}

body {
  padding: 5vw;
}

p, li, a {
  font-family: Arial;
}

hr {
  margin-top: 50px;
  margin-bottom: 50px;
  color: black;
}

button {
  -webkit-tap-highlight-color: transparent;
  outline: none; 
}

#followme {
  text-align: center;
}

#index {
  display: flex;
  justify-content: center;
  align-items: center;
}

.option {
  padding: 0;
  margin-left: 5%;
  margin-right: 5%;
  border: none;
  background: none;
  cursor: pointer;
}

.option {
  --primary-color: #111;
  --hovered-color: #9d00ff;
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  gap: 0.5rem;
  align-items: center;
}

.option p {
  margin: 0;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}

.option::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--hovered-color);
  height: 2px;
  transition: 0.3s ease-out;
}

.option:hover::after {
  width: 100%;
}

.option:hover p::before {
  width: 100%;
}




.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.button {
  cursor: pointer;
  text-decoration: none;
  color: #ffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2d2e32;
  border: 2px solid #2d2e32;
  transition: all 0.45s;
}

.button:hover {
  transform: rotate(360deg);
  transform-origin: center center;
  background-color: #ffff;
  color: #2d2e32;
}

.button:hover .btn-svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg)
    brightness(103%) contrast(103%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
