* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer a {
  color: #4e5fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  padding: 2px 5px;
  border-radius: 4px;
}

footer a:hover {
  background-color: rgba(78, 95, 255, 0.1);
  transform: translateY(-2px);
}

body {
  font-family: 'Arial', sans-serif;
  background: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  padding: 12px 30px;
  font-size: 16px;
  background: linear-gradient(145deg, #6e7dff, #4e5fff);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 4px 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:focus {
  outline: none;
}

.arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.arrow {
  font-size: 36px;
  color: #4e5fff;
  cursor: default;
  text-align: center;
  display: block;
  width: 100%;
  line-height: 36px;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
