@import url("normalize.css");

body {
    font-family: sans-serif;
    user-select: none;
  }
  
  /* Make content area fill the entire browser window */
  html,
  .fullscreen {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color:#000215;
    color: #fbfbfb;
    overflow: hidden;
  }
  
  a {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
  }

  a:hover {
    text-decoration: underline;
  }

  .overlay{
    position: absolute;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .info-box {
    position:relative;
    width:50%;
    max-width:95vw;
    height:50%;
    min-width: 400px;
    border: solid white 1px;
    margin: auto;
    margin-top: 25vh;
    background-color: rgba(255,255,255,0.9);
    color: rgb(130,130,130);
    padding: 10px;
    border-radius:5px;
    overflow-y: scroll;
    z-index: 2;
    line-height:1.3em;
  }

  .info-title{
    font-weight:bold;
    text-align: center;
  }

  .info-mobile{
    font-style:italic;
    text-align: center;
    display:none;
  }

  /* Center the content in the browser window */
  .container {
    margin: auto;
    text-align: center;
    height: inherit;
    width: inherit;
  }
  
  .title-container {
    /* font-size: 3em !important; */
    grid-column: 1 / 21;
    top: 45vh;
    left: 48vw;
    position: absolute;
    z-index: 1;
    /* background-color: black; */
    height: 3em;
    width: 3em;
  }

  .title {
    font-size: 3em !important;
  }
  
  .parent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    height: 90%;
    width: inherit;
    max-height: 90vh;
    max-width: 90vw;
    margin: auto;
    align-items: center;
    margin-top: 2vh;
    }

  .toolbar {
    width: inherit;
    max-width: 90vh;
    height: 3vh;
    margin: 2vh auto 0 auto;
    position: relative;
  }


  button {
    border-radius: 5px;
    opacity: 0.5;
  }

  button:hover {
    opacity: 1;
  }

  #close-button {
    position: absolute;
    top: 5px;
    right: 5px;
  }

  #stop-button {
    transition-duration: 0.5s;
    visibility: hidden;
    background-color: #b50000;
    color:white;
  }


  .toolbar button {
    display:inline-block;
  }

  .invis {
    color: black;
    
  }

  .invis:hover {
    color: lightgray;
  }

  .fake-hover {
    color: lightgray !important;
  }


  .item {
    transition-duration: 0.5s;
    /* font-size: 0.6em !important; */
    position: relative;
  }