/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Hanalei&family=Kablammo&display=swap');
.hanalei-regular{
  font-family: "Hanalei", system-ui;
  font-weight: 400;
  font-size: 65px;
  font-style: normal;
}
body{
    background: linear-gradient(180deg, #0d1117, #161b22);
    color: whitesmoke;
}
#app-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
}
#questions-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
#score-container{
  position: fixed;
  right: 40px;
  top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;

  background: linear-gradient(45deg, #003366, #00b7ff); /* Gradient from dark blue to light blue */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  outline: none;
  padding: 10px 15px;
  min-width: 100px;
  min-height: 45px;
  border-radius: 10px;
}
#score-container::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
  opacity: 0.5;
  z-index: 0;
  animation: stars 1.5s infinite linear;
}
/* Animation to simulate the moving stars */
@keyframes stars {
  0% {
    background-position: 0 0;
 }
  100% {
    background-position: 100% 100%;
  }
}