﻿html {
  scroll-behavior: smooth;
}

html, body {
  font-size: 18px;
  font-family: Arial;
  background-color: #222;
  color: #eeeeee;
}

input, button {
  font-size: 18px;
  font-family: Arial;
}

body{
  padding: 20px 0 50px 0;
}

form{
  padding: 10px 5px;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 1000px) {
  body {
    width:80%;
    margin-left: auto;
    margin-right: auto;
  }
  form{
    left: 10%;
    padding: 10px 0;
  }
}

@media only screen and (min-width: 1300px) {
  body {
    width:70%;
    margin-left: auto;
    margin-right: auto;
  }
  form{
    left: 15%;
    padding: 10px 0;
  }
}

a {
  color: #00fdff;
}


/* visited link */
a:visited {
  color: lightgray;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

.questionContainer {
  margin: 20px 0;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 5px;
}

.questionContainer > label{
  color: MediumAquaMarine;
}

.rightAnswer {
  margin: 4px 0;
  font-size: 110%;
}

.rightAnswer input, .wrongAnswer input {
  display: none;
}

.rightAnswer label, .wrongAnswer label {
  display: list-item;                                        
  list-style-type: disc; 
  list-style-position: inside; 
}

.wrongAnswer {
  margin: 4px 0;
  font-size: 110%;
  color: lightpink;
}

img {
  max-width: 100%;
  height: auto;
  border: none!important;
  padding: 0!important;
}

label {
  width: auto !important;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #2c6aa0; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

@media only screen and (min-width: 1000px) {
  #myBtn {
    bottom: 30px;
    right: 30px;
  }
}
#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
