* {
    font-family: "Karla";
}

a {
  text-decoration: none !important;
  color: white !important;
  letter-spacing: 1px;
}

.accordion {
    color: #444;
    cursor: pointer;
    padding: 8px;
    padding-left: 3vh;
    margin-left: 15px; 
    margin-top: 9px;
    width: 95%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 3px;
    box-shadow: 0px 2px 2px #333333be;
    font-weight: bold;
  }

  #check {
    float: left;
    width: 2.4vh;
    margin-left: 1.5vh;
    margin-right: 1vh;
    margin-top: 0.5vh;
  }

  #arrow {
    float: right;
    width: 3.5vh;
    margin-right: 1vh;
  }

  .active #arrow {
  transform: rotate(180deg);
}

  .panel {
    margin-left: 1em;
    display: none;
    border-radius: 2px;
    text-align: left;
    box-shadow: 0px 3px 3px #333333;
    margin-top: 0.4em;
    width: 95%;
    padding-top: 5px;
  }

  #big {
      text-align: center;
      height: 100%;
  }

  #monitor {
      padding: 1em;
      margin-top: 5vh;
      height: 83vh;
      border-radius: 10px;
      box-shadow: 0px 6px 4px #333333;
      min-width: 900px;
  }

  #leftSide {
      border-radius: 5px;
      margin-left: 3vh;
      margin-right: 2vh;
      height: 78vh;
  }

  #badge {
      width: 13vh;
      margin-bottom: 1.8vh;
      margin-left: 2vh;
      margin-right: 2vh;
      border-radius: 12px;
  }

  #badge:hover {
    animation: shake 0.3s;
    cursor: pointer;
  }

  @keyframes shake {
    0% { transform: translate(0px, 2px); }
    50% { transform: translate(0px, -1px); }
  }

  #rightSide {
      border-radius: 5px;
      margin-left: 2vh;
      margin-right: 3vh;
      height: 78vh;
      box-shadow: 0px 4px 4px #333333;
      overflow-y: scroll;
  }

  h1 {
    font-size: 2em !important;
    padding: 1.5vh;
    margin-top: 3vh !important;
    color: rgb(44, 44, 44) !important;
    box-shadow: 0px 2px 2px #333333be;
    font-weight: bold !important;
    border-radius: 4px;
    margin-left: 18px; 
    margin-bottom: 4vh !important;
  }

  h2 {
    font-size: 1.6em !important;
    letter-spacing: 0.1em;
    box-shadow: 0px 3px 3px #333333be;
    font-weight: bold !important;
    border-radius: 4px;
    color: whitesmoke !important;
    padding: 3vh;
    margin-bottom: 4vh !important;;
    line-height: 150% !important;
  }

  p {
    margin: auto;
    padding: 3px;
    color: darkslategray;
    font-weight: bold;
  }

  #instruct {
    font-size: 0.9em;
    margin-top: 0px;
    padding: 0px;
    color: lightgrey;
    font-weight: normal;
  }

  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey; 
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }

  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2em;
    color: white;
    text-align: center;
    box-shadow: 0px -2px 2px #727272;
  }

  #back {
    width: 4vh;
    padding: 2px;
    margin: 2px;
  }


  
  /* COLORS */
  a:hover {
    color: rgb(124, 156, 175) !important;
  }

  .accordion {
    background-color:rgb(241, 234, 231);
  }

  .active, .accordion:hover {
    background-color: #374E5B;
    color: lightgrey;
  }

  .panel {
    background-color:rgb(241, 234, 231);
  }

  #big {
    background-color: rgb(226, 226, 226);
}

  #monitor {
  background-color: #253A46;
}

#rightSide {
  background-color: #647c74;
  border-bottom: solid 6px #647c74;
  border-top: solid 6px #647c74;
}

h1 {
  background-color:rgb(241, 234, 231);
}

h2 {
  background-color: #374E5B;
}

::-webkit-scrollbar-thumb {
  background-color:rgba(241, 234, 231, 0.2);
}

footer {
  background-color: rgb(48, 48, 48);
}