/* $purple = #5c2686;
$pink = ff1690;
$darkpurple = $1c0658; */
body {
  margin: 0px;
}

.main-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  background-color: #bfbfbf;
  color: #444444;
  font-family: monospace;
}

.left-viewport {
  flex: 1 0 0;
  /* max-height:80vh; */
  /* overflow: scroll; */
  padding:10px 15px;
}

#typewriter {
  max-height:80vh;
  overflow: scroll;
}

.down-caret-button {
  height: 15px;
  padding-top: 10px;
  position:relative;
  left: 5px;
  top: 5px;
}

.center-viewport {
  flex: 1 0 700px;
  max-width: 700px;
  margin: 0;
  /* background-color: #5c2686;
  background-image: -webkit-gradient(linear, top, bottom, from(cyan), to(red));
  background-image: -webkit-linear-gradient(top, cyan, red);
  background-image: -moz-linear-gradient(top, cyan, red);
  background-image: -o-linear-gradient(top, cyan, red);
  background-image: linear-gradient(to bottom, cyan, red); */
  overflow: hidden;
  font-family: sans-serif;
}

.right-viewport {
  flex: 1 0 0;
  padding: 150px 25px;
  font-size: 16px;
}

.station {
  display: flex;
  align-self: center;
  color: #5c2686;
}

canvas {
  width: 100%;
  height: 100%;
}

.console {
  position: absolute;
  bottom: 10px;
  display: flex;
}

.console input {
  cursor: pointer;
  height: 75px;
}

.info-box {
  position: absolute;
  bottom:12px;
  right: 10px;
}

.info-box input {
  cursor: pointer;
  height: 50px;
}

.about-container {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  background-color: lightslategrey;
  padding: 20px;
  line-height: 1.5em;
}

.sun-container {
  position: absolute;
  left: 50%;
  bottom: 50%;
}

.mountain-background {
   width: 100%;
   position: relative;
}

.mountain-foreground-left {
  position: absolute;
  bottom: -10px;
}

iframe {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

#pauseButton {
  display: none;
}

#now-playing {
  visibility: hidden;
}

#current-track {
  font-size: 18px;
  font-weight: bold;
}

#current-artist {
  font-size: 20px;
}

@media only screen and (max-width: 1023px) {
  .center-viewport {
    flex: 1 0 0;
    max-width: none;
  }

  .main-container {
    flex-direction: column;
  }
  .console input {
    height: 50px;
  }
  .left-viewport {
    display: none;
  }
  .right-viewport {
    display: none;
  }

  .about-container {
    top: 50%;
    left: 0%;
    color: white;
    background-color: lightslategrey;
    padding: 20px;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 1279px) {
  .right-viewport {
    display: none;
  }
}
