@font-face {
  font-family: 'Sligoil';
  src: url('assets/sligoil-main/fonts/Sligoil-Micro.otf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: 'Sligoil', sans-serif !important;
}

html {
  font-size: 16px;
}

h1 {
  font-size: 3rem !important;
  line-height: 1.2;
  color: #ff4242;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #ff4242;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }
}

body {
  margin: 0;
  background-image: url('assets/bg.png');
  background-position: center;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#game-container {
  background: white;
  max-width: 500px;
  width: 100%;
  height: 90vh;
  margin: 2rem;
  border: 1px solid;
  border-radius: 30px;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Buttons */
button {
  width: 90%;
  padding: 15px;
  margin: 10px auto;
  font-size: 18px;
  border-radius: 10px;
  background: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  display: block;
}

button:hover {
  background: #ff8533;
}

/* Start button round shape */
#start-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: auto;
}

/* Options buttons */
#options {
  height: 50%
}
.options button {
  background: #eee;
  color: #333;
  border: 2px solid transparent;
  width: 100%;
  margin-bottom: 10px;
}

.options button.selected {
  border-color: #ff6600;
  background: #ffd9b3;
}

.form-control {
  font-family: 'Sligoil', sans-serif !important;
}

/* Inputs */
input {
  width: 90%;
  padding: 12px;
  margin: 10px auto;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
}

#quiz-container {
  height: 100%;
}

#quiz-header {
  height: 30%;
}

/* Timer bar */
.timer-bar-container {
  height: 30px;
  background-color: #eee;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  width: 100%;
  background-color: #4caf50;
  transition: width 0.25s linear;
}

#next-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  /* bottom: 3rem;
  right: 2rem; */
}