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

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--color-background);
  color: var(--text-primary);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

h1 {
  color: #000;
  text-align: center;

  font-family: Nunito;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px; /* 116.667% */
  margin-bottom: 24px;
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-container .btn{
  padding-left: 100px;  
  padding-right: 100px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-secondary);
}
.footer p {
  margin: 0.2rem 0;
} 