html, body {
    height: 96%;
    margin: 5px;
}

#outerContainer {
    height: 100%;
}

#container {
  width: 100%;
  height: 100%;
  background-color: #333;
  display: flex;
  overflow: hidden;
  border-radius: 7px;
  touch-action: none;
  margin-top: 5px;
}

#mycircle {
  width: 80px;
  height: 80px;
  background-color: rgb(245, 230, 99);
  border: 10px solid rgba(136, 136, 136, .5);
  border-radius: 50%;
  touch-action: none;
  user-select: none;
  z-index: 2;
  visibility: hidden;
}

#mycircle:active {
  background-color: rgba(168, 218, 220, 1.00);
}

#mycircle:hover {
  cursor: pointer;
  border-width: 20px;
  width: 80px;
  height: 80px;
}

#goal {
  width: 80px;
  height: 80px;
  background-color: white;
  border: 10px solid rgba(136, 136, 136, .9);
  border-radius: 50%;
  touch-action: none;
  user-select: none;
  position: absolute;
  z-index: 1;
  visibility: hidden;
  text-align: center;
}

#square {
  width: 70px;
  height: 70px;
  background-color: rgb(14, 32, 153);
  border: 10px solid rgba(136, 136, 136, .5);
  touch-action: none;
  user-select: none;
  position: absolute;
  z-index: 3;
  visibility: hidden;
}

#square:hover {
  cursor: pointer;
}

#triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 80px solid rgba(3, 252, 28, .5);
  position: absolute;
  z-index: 4;
  visibility: hidden;
}

#triangle:hover {
  cursor: pointer;
}

#triangle2 {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 50px solid rgba(3, 252, 28);
  margin-top: 20px;
  margin-left: -25px;
  touch-action: none;
  user-select: none;
  position: absolute;
  z-index: 5;
}

#goalTitle {
  padding-top: 15px;
}

#r_triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 80px solid rgba(235, 116, 52, .5);
  position: absolute;
  z-index: 6;
  visibility: hidden;
}

#r_triangle2 {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 50px solid rgba(235, 116, 52);
  margin-top: -70px;
  margin-left: -25px;
  touch-action: none;
  user-select: none;
  position: absolute;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 50; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 4em;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  border-radius: 20px;
}

#startMeasurementBtn {
  display: block;
  margin: auto;
  cursor: pointer;
}

#download_csv {
  float: right;
}

#navBtns {
  padding-bottom: 0.8em;
  padding-top: 0.8em;
}

#countDownTimer {
  margin-left: 0.4em;
}

#instructionSpan {
  margin-top: 10px;
}

#resetBtn {
  display: inline-block;
  float: right;
  margin-left: 10px;
}

#measurementPeriodAlert {
  text-align: center; 
  display: none;
}