* {
  box-sizing: border-box;
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container {
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: stretch; */
  /* justify-content: stretch; */
}

.footer {
  width: 100%;
  height: 80px;
  position: sticky;
  bottom: 0;
  background-color: rgb(83, 113, 231);
  padding: 0px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.live-button {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #e53935;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}
