html {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(12px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

textarea{
  border: 0px solid white;
}

body {
  background-color: #ffffff;
}

body > div{
  overflow-x:hidden;
}

#header{
  background-color:#343a40;
  height:9vh;
}

#logo{
  font-size:0.8em;
}

.logo-logo{
  color:white;
  line-height: normal;
  font-size:1.2em;
}

#visualizacao{
  background-color:#101010;
  color:#fdf6e3;
  width:100%;
  height:78vh;
  overflow-y:scroll;
  word-wrap:break-word;
  padding:0.5em;
  font-family:'Roboto Mono',monospace;
}

#codearea{
  font-family:'Roboto Mono',monospace;
  font-weight:bold;
  background-color:#343a40;
  color:#d1c4c4;
  width:100%;
  height:100%;
  resize: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: none;
}

.popup {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  max-height: 80%;
  max-width: 80%;
  overflow: auto;
}

.popup button {
  display: block;
  margin: 0 auto;

}

#titles{
  padding:1em;
  font-family:'Roboto Mono',monospace;
}

.row > div{
  padding-left:0.5%;
  padding-right:0.5%;
}

.btn {
  background-color:#b81717;
  color: #ffffff;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}