@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,598;1,598&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  box-sizing: border-box;
}
body {
  background-color: rgb(0,0,0);
  background-image: url("https://www.jablonka.info/images/082023/Termomodernizacja_ZS_Jasieniec.jpg");
  background-position: center;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 598;
  font-style: normal;
  margin-left: 0px;
  margin-right: 0px;
}
.quiiz {
  width: 100%;
  background-color: rgba(0,0,0,0.8);
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding-bottom: 35px;
}
/* #quiz {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0 auto;
  margin-bottom: 0 auto;
  width: 100%;
  padding: 20px;
  background-color: rgba(0,0,0,0.8);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(198, 222, 60, 0.2);
  z-index: 99;
  color: white;
} */
.quiz {
  width: 100%;
  padding: 20px;
  background-color: rgba(0,0,0,0.2);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(198, 222, 60, 0.2);
  z-index: -1;
  position: absolute;
  filter: blur(8px);
   -webkit-filter: blur(8px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  text-align: center;
  filter: blur(-8px);
  -webkit-filter: blur(-8px);
  color: white;
  font-family: Playfair;
}
h3 {
  text-align: center;
  filter: blur(-8px);
  -webkit-filter: blur(-8px);
  color: white;
}

#question {
  margin-bottom: 20px;
  color: white;
  padding-left: 15px;
}

#options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  
}

button {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease;
  min-height: 50px;
}
button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.4s;
}

a {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: easy;
  min-height: 50px;
  text-decoration: none;
  margin-top: 15px;
  text-align: center;
}
a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.4s;
}
/*button:hover {
  background-color: #8f8d8d;
}*/
p {
  color: white;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
}

/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  background-color: rgba(0,0,0,0.8);
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.navbar a {
  float: right;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  width: auto;
  margin-top: 0;
}

/* Change the color of links on hover */
.navbar a:hover {
 background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #04AA6D;
  color: white;
}