* {
  font-family: "Montserrat", sans-serif;
}

html,
body {
  margin: 0;
}

body {
  background-color: #202A44;
}

h1.title {
  margin: 0;
  font-family: "Press Start 2P", cursive;
  display: block;
  height: 60px;
  font-size: 3rem;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(to bottom, #202A44 50%, #B0DBF1 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1.title span {
  font-family: "Press Start 2P", cursive;
  font-size: 1rem;
}
h1.title:after {
  content: "";
  width: 100%;
  height: 30px;
  display: block;
  background-color: #B0DBF1;
  position: absolute;
  z-index: -1;
  top: 0;
}

h2.subtitle {
  font-family: "Press Start 2P", cursive;
  font-size: 1rem;
  color: #dedede;
  border-bottom: 1px solid #B0DBF1;
  line-height: 2;
  margin-bottom: 10px;
}

.container {
  margin: 20px;
}

.content {
  color: #dedede;
}
.content pre {
  border: 1px solid grey;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
}
.content textarea,
.content input[type=text] {
  border: 1px solid darkgrey;
  border-radius: 5px;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #dedede;
}

.main-container {
  display: flex;
  flex-direction: column;
}

.main-color {
  width: 100%;
  height: 100%;
  min-width: 300px;
  padding: 10px 0;
  font-size: 0.8em;
  font-family: Tahoma;
}
.main-color input {
  border: 0;
  border-bottom: 1px solid #202A44;
  background-color: transparent;
  width: 140px;
  font-size: 1em;
  color: green;
  outline: none;
  font-family: Tahoma;
  text-align: center;
}

.column {
  width: 100%;
  height: 100%;
}
.column .box {
  width: 100%;
  height: 50%;
}
.column .box:before {
  width: 100%;
  height: 4vh;
  font-size: 2vh;
  border-bottom: 3px solid grey;
  box-sizing: border-box;
  background-color: white;
  color: #202A44;
  display: block;
  line-height: 4vh;
  padding-left: 10px;
  font-family: Tahoma;
}
.column .box.lighten:before {
  content: "Light";
}
.column .box.darken:before {
  content: "Dark";
}

.color-box {
  width: 100%;
  height: 8.3vh;
}
.color-box .title {
  font-size: 4vh;
  padding: 0.5vh;
  line-height: 8.3vh;
  background-color: rgba(50, 50, 50, 0.4);
  font-family: courier new;
  font-weight: bold;
  color: #ccc;
  text-shadow: 0px 0px 10px #202A44;
}


.article {
  color:white;
  padding: 3% 15% 1%;
}


a {
  color:yellow;
}