.btn:disabled {
  pointer-events: none;
}

.btn:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: #333;
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.btn:hover {
  box-shadow: 1px 1px 200px #252525;
  color: #fff;
  border: none;
}

.btn:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}

.btn {
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #252525;
  overflow: hidden;
  border-radius: 30px;
  color: #333;
  transition: all 0.5s ease-in-out;
  width: 180px;
  height: 60px;
}

h1 {
  font-size: 0.75rem; /* Adjusted font size to half */
}

h3 {
  font-size: 0.5rem; /* Adjusted font size to half */
}

@media (max-width: 768px) {
  h1 {
    font-size: 1rem; /* Adjusted font size to half */
    margin: 0;
  }

  h3 {
    font-size: 0.625rem; /* Adjusted font size to half */
    margin: 0;
  }

  .btn {
    width: 150px;
    height: 50px;
    font-size: 8px; /* Adjusted font size to half */
  }
}

@view-transition {
  navigation: auto;
}

