﻿
body {
  font-size: 14px;
  background-color: black;
  color: aliceblue;
  overflow: hidden;
}

.main {
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 0px;
}

.command {
  font-weight: bold;
  text-align: center;
  cursor: default;
  background-color: aqua;
  color: darkblue;
  resize: none;
  border-radius: 12%;
  width: 15%;
  height: 15%;
  user-select: none;
  overflow: hidden;
}

.information {
  width: 40%;
  border-radius: 8%;
}

.result {
  padding-top: 10px;
  font-size: 18pt;
  font-family: monospace;
}

.progress {
  font-size: 12pt;
  font-family: monospace;
  color: darkgrey;
}

.row {
  width: 100%;  
}


.col {
  padding-left: 1px;
  padding-right: 1px;
  display: inline;
}

.button2 {
  padding-left: 2px;
  padding-right: 2px;
  color: white;
  background-color: steelblue;
  font-weight: bold;
  display: inline;
  border-radius: 8%;
  vertical-align: top;
  width: 15%;
}

.matched {
  opacity: 0.3;
}

.signature {
  font-size: 8pt;
  color: dimgray;
  font-family: monospace;
}


@media only screen and (min-width: 1001px) {

  .command {
    font-size: 24pt;
  }

  .main {
    width: 600px;
  }

  .row {
    padding-top: 8px;  
  }

  .button2 {
    font-size: 32pt;
    height: 80px;
  }

}


@media only screen and (max-width: 1000px) {
  .command {
    font-size: 18pt;
  }

  .main {
    width: 600px;
  }

  .row {
    padding-top: 7px;  
  }

  .button2 {
    font-size: 30pt;
    height: 75px;
  }

}

@media only screen and (max-width: 800px) {
  .command {
    font-size: 18pt;
  }

  .main {
    width: 600px;
  }

  .row {
    padding-top: 6px;  
  }

  .button2 {
    font-size: 28pt;
    height: 75px;
  }

}


@media only screen and (min-width: 650px) {
  .progress {
    font-size: 14pt;
  }
}

@media only screen and (max-width: 650px) {
  .command {
    font-size: 16pt;
  }

  .main {
    width: 100%;
  }

  .row {
    padding-top: 5px;  
  }

  .button2 {
    font-size: 26pt;
    height: 75px;
  }

}

@media only screen and (max-width: 550px) {
  .command {
    font-size: 16pt;
  }

  .main {
    width: 100%;
  }

  .row {
    padding-top: 4px;  
  }

  .button2 {
    font-size: 26pt;
    height: 72px;
  }
}

@media only screen and (max-width: 420px) {
  .command {
    font-size: 14pt;
  }

  .main {
    width: 100%;
  }

  .row {
    padding-top: 3px;  
  }

.button2 {
    font-size: 24pt;
    height: 70px;
  }
}

@media only screen and (max-width: 321px) {
  .command {
    font-size: 10pt;
  }

  .main {
    width: 100%;
  }

  .row {
    padding-top: 2px;  
  }

  .button2 {
    font-size: 18pt;
    height: 40px;
    padding: 0px;
  }
 
    
}

