body {
  font-family: 'Poppins';
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  text-align: center;
}

#ad {
  margin-bottom: 10px;
  
}

body {
  background-color: #34CDE3;
}
#container {
  display: flex;
  flex-direction: column;
}

#text-container {
  margin-bottom: 1rem;
  color: white;
}

#question-container {
  margin: 0 auto;
  padding: 20px;
  padding-top: 5px;
  background-color: #ffffffd1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: auto;
  border-radius: 20px;
  width: 60%;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05); 
}

p {
  font-size: 20px;
  margin-bottom: 4px;
  color: black;
  line-height: 1.5;
}


#underrubrik {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05); 
  font-size: 1,5rem;
  color: white;
}

button {
  padding: 20px 40px;
  background-color: rgba(0, 0, 255, 0.76);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: large;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#reload-icon {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
}

#english {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

@media only screen and (max-width: 600px) {

  #underrubrik {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 25px;
    margin-top: 10px;
    }
    h1 {
      font-size: 22px;
      margin-bottom: 0px;
    }
    #underrubrik {
      font-size: 17px;
    }
    #question-container {
      border-radius: 20px;
      width: 90%;
  }
}


