*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #050316;
}

@font-face {
  font-family: 'Troika'; /* Name your font family */
  src: url('/static/fontfamilies/troika.otf'); /* Locate the .ttf file within your directory*/
}

@font-face {
  font-family: 'VAG-HandWritten'; /* Name your font family */
  src: url('/static/fontfamilies/VAG-HandWritten.otf'); /* Locate the .ttf file within your directory*/
}
@font-face {
  font-family: 'Monoid-Bold'; /* Name your font family */
  src: url('/static/fontfamilies/Monoid-Bold.ttf'); /* Locate the .ttf file within your directory*/
}
@font-face {
  font-family: 'Monoid-Retina'; /* Name your font family */
  src: url('/static/fontfamilies/Monoid-Retina.ttf'); /* Locate the .ttf file within your directory*/
}

p{
    position: relative;
}

.myQuesDiv {
	/*background-color:#f3f4f6;*/

/*	color: #f6f8f8;*/
}

.myQuesNum {
	font-family:"Ubuntu", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.myQues{
    position: none;
    font-family: "Ubuntu", sans-serif;
	font-size: 18px;
	font-weight: 500;
}

h1{
	font-family:"Monoid-Retina";
}
.topnav {
  overflow: hidden;
  background-color: #5A5851;
}

.topnav a {
  float: left;
  color: #f6f8f8;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
  font-family:"Monoid-Bold";
}

.topnav a:hover {
  background-color: #2ecc70;
  color: #050316;
}

.topnav a.active {
  color: #f6f8f8;
}

#div1{
  text-align: center;
  font-size: 60px;
  margin-top: 0px;
  top: 140px;
  right: 10px;
  color: rgba(255, 0, 0, 1);
  /*display: flex;*/
  position: fixed;
}

progress[value] {
  --background: conic-gradient(#ced4da var(--p),#0d6efd 0); 

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--background);
  -webkit-mask: radial-gradient(#0000 59%,#000 60% 70%,#0000 71%);
}
progress[value]::-webkit-progress-bar {
  background: var(--background);
}
progress[value]::-webkit-progress-value {
  background: #0000;
}
progress[value]::-moz-progress-bar {
  background: #0000;
}

#maki {
  --w: 150px; /* the width*/
  
  font-size: 20px;
  font-weight: bold;
  display: flex;
  place-content: center;
  width: var(--w);
  height: 150px;
  aspect-ratio: 1;
  position: relative;
}

#timer {
  --w: 150px; /* the width*/
  
  font-size: 20px;
  font-weight: bold;
  display: flex;
  place-content: center;
  width: var(--w);
  aspect-ratio: 1;
  position: absolute;
  top: 65px;
}
#pause {
  padding: 0;
  border: none;
  background: #f8f9fa;
  background-position: right bottom;
  transition: all 0.5s ease-in-out;
  border-radius: 100%;
  text-align: center;
  overflow: hidden;
}

#pause:hover {
  background: #dee2e6;
  background-position: left top;
}

.div0 {
    border: 2px ridge;
    width: 585px;
    height: 317.25px;
    margin-left:20px;
    margin-top: 10px;
    position: relative;
}

.div3 {
    display: grid;
    top: 7px;
}

.div2 {
    display: inline-grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto;
}

.divtriangle {
	font-size: 16px;
    position: absolute;
	opacity:0.8;
}

.divlrtb {

}

.divsq {
    border: 1px solid;
    width: 70px;
    text-align: center;
}
.img1 {
    max-width: 100%;
    max-height: 100%;
	opacity:0.9;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    font-size: 18px;
    width: 500px;
    height: fit-content;
    overflow: hidden;
    background-color: #5A5851;
    color: #f6f8f8;
    text-align: justify;
    border-radius: 6px;
    padding: 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltiptext.show{
    text-align: justify;    
}

.tooltiptext {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}