html {
  height: 100%;
}
  
#main {
  display: flex;
  height: 100%;
  width: 100%;
  background-image:
    linear-gradient(
      to right,
     #1a0000, black, #00001a
    );
  font-family: 'Courier New', Courier, monospace
}

#main-left {
  /* background-image:
    radial-gradient(
      circle,
     #1a0000, black, #00001a
    ); */
  width: 33.333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 4px #F2D7EE;
  box-sizing: border-box;
}

#main-right {
  background-color: black;
  display: flex;
  justify-content: center;
  width: 66.6666%;
  height: 100%;
  border: solid 4px #e6f0ff;
  /* border-bottom: solid 5px #ffffcc; */
  box-sizing: border-box;
}
 
#visualizer-title {
  margin: 10% auto 5% auto;
  color: #e6f0ff;
  width: 100%;
  font-size: 50px;
  text-align: center;
  font-weight: 500;
}

#visualizer-about {
  color: #F2D7EE;
  width: 75%;
  font-size: 17px;
  line-height: 23px;
  margin: 0 auto;
}

#main-right{
  display: flex;
  justify-items: center;
  align-items: center;
}

#map {
  height: 95%;
  width: 95%;
  border-radius: 5px;
}

#main-left-bottom {
  height: 100px;
  width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  padding-bottom: 30px;
}

.icon {
  height: 100px;
  width: 100px;
}

.selector-title {
  color: #e6f0ff;
}