/* CSS files add styling rules to your content */

body {
  font-family: sans-serif, monospace;
  margin: 2em; 
}

h1 {
  font-size: 24px;
  color:#ed1c24;
}
h2{
  font-size: 18px;
  color:#01050d;
}

div.a-loader-title{
  background-color:rgba(0,0,0,.6);
  font-family:sans-serif, monospace;
  font-size:20px;
  text-align:center;
  line-height: normal;
  padding:20px 20px 10px 100px;
  font-weight:300;
  position:absolute;
  right:0;
  left:0;
  top:0;
  color:#fff;
}

div#text {
  position: absolute;
  left: 6px; 
  top: 6px;
  padding: 6px;
  /*
  text-shadow: 0 0 5px white;
  */
  max-width: 300px;
  /* background-color: rgba(255, 255, 255, 0.8); */
}


div#info {
  position: absolute;
  top: 0;
  left: -350px;
  padding: 55px 10px;
  width: 350px;
  height:600px;
  z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: scroll;
}

div#info.show-info {
  /* Width of info */
  transform: translateX(350px);
}

.toggle {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  border:0;
  min-width:58px;
  min-height:34px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  margin-bottom:20px;
  color: #ffffff;
  cursor: pointer;
}

.toggle:focus{
  outline: none;
}

.container {
  margin: auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

