HTML {
  font-family: helvetica;
  background-image: linear-gradient(to right, rgb(229, 247, 0), rgb(255, 165, 0));
}


#diagnostics {
   position: fixed;
  top:30px;
  right:15vw;
  border: solid;
  border-color: black;
  background: black;
  padding-bottom: 2px;
  border-radius: 5px;
  
}

.marks {
  display: inline-block;
  float: right;
  font-weight:bold;
  margin-right: 5%;
}

#square {
  display:inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid deepskyblue;
  border-radius: 5px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  background: white;
}
#square2 {
  display:inline-block;
  bottom: 60%;
  right: 15%;
  width: 50px;
  height: 50px;
  border: 3px solid green;
  border-radius: 5px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  background: white;
}

#score,#grade {
  font-size:20px;
}

#container1 {
  display: block;
  text-align: center;
  height: 50px;
  width: 100%;
  padding: 0;
}

.container {
  display: block;
  text-align: center;
  height: 180px;
}


svg {
  top: 20px;
  right: 0;
  left:40%;
  margin: auto;
}




#home {
  background-color: rgb(229, 247, 0);
  color: black;
  position: fixed;
  left: 1vw;
  top: 2vh;
  width: 100px;
  height: 45px;
  display: inline-block; 
  border: 1px black solid;
  border-radius: 5px;
  text-align: center;
  font: georgia;
  font-size: 35px;
}


#heading {
  display: block;
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight:lighter;
  height: 20px;
  width:55%;
  margin: 0 auto;
  color: grey; 
    
}

svg path {
  fill: grey;
  stroke: black;
  stroke-width: 1px;
  stroke-dasharray: 160;
  stroke-dashoffset: 400;
  opacity: 0;
  animation: 18s text-outline infinite  alternate;
}


@keyframes text-outline {
  from {
    stroke-dashoffset: 800;
    opacity: 1;
  }
  to {
    stroke-dashoffset: 80;
    opacity: 1;
  }
}

#qbox {
  display: inline-block;
  left: 0;
  right: 0;
  padding-top: 32px;
  font-color: black;
  font-size: 20px;  
  text-align: center;
  height: 100px;
width: 400px;
background: white;
  border: 2px black solid;
  border-radius: 9px;
}

#A1,#A2,#A3,#A4 {
  width: 240px;
  height: 110px;
  background-color: deepskyblue;
  border: 2px black solid;
  border-radius:5px;
  padding = 0;
  overflow: visible;
  margin: 1px;
  vertical-align: bottom;
}

#start {
  width: 120px;
  height: 60px;
  text-align: center;
  border-color: deepskyblue;
    border-radius:3px;
    padding:0;
    position:relative;
    font-family: helvetica;
    font-size: 20px;
  
   }
#start:hover {
   border-top-color: deepskyblue;
   background: deepskyblue;
   color: black;
   }
#start:active {
   border-top-color: #1b435e;
   background: #1b435e;
   }