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

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(135deg, #0008ff 0%, #ff0000 100%);
  background-size: cover;
  background-size: 400% 400%;
  animation: grdaiant 10s infinite;
}
@keyframes grdaiant {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient {
  /* width: 700px; */
  /* background-color: white; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gradient_value {
  font-size: 32px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: rgb(250, 250, 255);
  border: 2px solid white;
  padding: 20px;
  border-radius: 8px;
  /* background-color: rgba(0, 0, 0, 0.2); */
}

.gradient_btns {
  width: 100%;
  display: flex;
  gap: 20px;
}

/* .gradient_btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: white;
  color: #333;
  transition: background-color 0.3s ease;
}

.gradient_btn:hover {
  background-color: #ddd;
} */
.gradient_btn {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 8px;

  &:hover {
    background-color: #dddddd95;
  }

  &:active {
    transform: translateY(2px);
  }
}
/* .gradient_btn:active {
  transform: translateY(2px);
} */
