body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f8f9fa;
}

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

p {
  font-size: calc(2rem + 1vw) !important;
}

h1 {
  font-size: calc(3rem + 1vw) !important;
}

.counter {
  font-size: calc(0.75rem + 1vw) !important;
}

.logo-container {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.logo {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 4.5rem !important;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 13rem;
  background-image: url(./logo.png);
}

.logo:before {
  content: " ";
}

.info-container {
  position: absolute;
  bottom: 1rem;
}

.info {
  position: relative;
  display: inline-block;
}
.btn-xlg {
  --bs-btn-padding-x: calc(2rem + 1.5vw) !important;
  --bs-btn-font-size: calc(1.5rem + 1.5vw) !important;
  --bs-btn-padding-y: calc(0.5rem + 1.5vw);
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-lg {
  --bs-btn-padding-x: calc(2rem + 0.5vw) !important;
  --bs-btn-font-size: calc(1.5rem + 0.5vw) !important;
  --bs-btn-padding-y: calc(0.5rem + 0.5vw);
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.scaleLabel {
  text-align: center;
  width: calc(1.5rem + 4vw);
  height: 0;
}

.window {
  height: 100vh;
  width: 100vw;
}

.win-pane {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 30px;
  height: 70vh;
  width: 90vw;
  max-width: 90vw !important;
  margin-top: 30px;
  margin-bottom: 20px; /* Add margin to separate from language buttons */
  text-align: center;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(1rem + 1.5vw) !important;
}

.language-option {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.language-option:hover,
.language-option.selected {
  text-decoration: underline;
}

.language-separator {
  margin: 0 10px;
}

.clock-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (max-width: 576px) {
  .win-pane {
    width: 95vw;
  }
}
