/* CSS rules for Caesars Cipher */
body {
  font-size: 16px;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;

}

.dark-body {
}

.container {
  width: 600px;
  height: 600px;
  margin: auto;
  margin-top: 5%;
  text-align: center;
  padding-top: 0.5em;
  border: 2px black solid;
  background-color: #FAF0BE;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.36);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.36);
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.36);
}

.dark-container {
  background: #4c4c4c;
  background: -webkit-linear-gradient(#4c4c4c 0%, #666666 9%, #595959 17%, #474747 26%, #666666 44%, #2c2c2c 59%, #2b2b2b 71%, #2c2c2c 74%, #1c1c1c 88%, #111111 91%, #000000 97%, #131313 100%);
  background: -o-linear-gradient(#4c4c4c 0%, #666666 9%, #595959 17%, #474747 26%, #666666 44%, #2c2c2c 59%, #2b2b2b 71%, #2c2c2c 74%, #1c1c1c 88%, #111111 91%, #000000 97%, #131313 100%);
  background: linear-gradient(#4c4c4c 0%, #666666 9%, #595959 17%, #474747 26%, #666666 44%, #2c2c2c 59%, #2b2b2b 71%, #2c2c2c 74%, #1c1c1c 88%, #111111 91%, #000000 97%, #131313 100%);
}

.heading {
  color: #F28E1C;
  font-weight: 700;
  margin-bottom: 1em;
}

.dark-heading{
  color: #ee0000;
}

.button {
  width: 10em;
  height: 5em;
  border: 2px solid;
  margin: 10px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
}

.left-button {
  -webkit-box-shadow: 10px 0px 25px -2px rgba(230,16,16,0.72);
  -moz-box-shadow: 10px 0px 25px -2px rgba(230,16,16,0.72);
  box-shadow: 10px 0px 25px -2px rgba(230,16,16,0.72);
  background-color: #A41313;
  color: #fff;
}

.right-button {
  -webkit-box-shadow: 10px 0px 25px -2px rgba(53,196,43,1);
  -moz-box-shadow: 10px 0px 25px -2px rgba(53,196,43,1);
  box-shadow: 10px 0px 25px -2px rgba(53,196,43,1);
  background-color: #66FF00;
  color: #000;

}

.input {
  width: 400px;
  height: 50px;
}

.dark-input {
  -webkit-box-shadow: 10px 10px 38px 61px rgba(207,207,207,1);
  -moz-box-shadow: 10px 10px 38px 61px rgba(207,207,207,1);
  box-shadow: 10px 10px 38px 61px rgba(207,207,207,1);
}

.output {
  width: 400px;
  height: 300px;
  margin: auto;
  margin-top: 15px;
  visibility: hidden;
  text-align: center;
}

/* TODO style bright output*/
.bright-output {
  visibility: visible;
  border: 2px black solid;
}

.dark-output {
  visibility: visible;
  border: 2px red solid;
  background-color: #aa0000;
  /* color: black */
  color: #eeeeee;
  font-weight: 500;
}

#article {
  padding:10% 10% 0;
}