@import url("https://fonts.googleapis.com/css?family=Rubik:400");
html {
  box-sizing: border-box;
}

body {
  background-color: #202A44;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: white;
  text-rendering: optimizelegibility;
  padding: 50px;
}

h1 {
  font-size: 2.2em;
  font-weight: 400;
  color: white;
  letter-spacing: -0.008em;
  padding-bottom: 20px;
  text-align: center;
}

::selection {
  background: #FFFF00;
}

.plaque {
  margin: 0 auto;
  background: #202A44;
  border: 1px solid #202A44;
  box-shadow: 0 0 9px 9px #48b0a7;
  padding: 20px 40px 50px 40px;
  border-radius: 9px;
  width: auto;
}

.smaller {
  font-size: 0.8em;
  padding-left: 20px;
  color: #def1ef;
}

.btn {
  background: #265d58;
  -webkit-border-radius: 9;
  -moz-border-radius: 9;
  border-radius: 9px;
  border: 1px solid #4DB6AC;
  letter-spacing: 0.04em;
  color: #ffffffdd;
  font-size: 20px;
  padding: 14px 22px 14px 22px;
  text-decoration: none;
}

.btn:hover {
  background: #1f4b47;
  border: 1px solid #4DB6AC;
  text-decoration: none;
  cursor: pointer;
}

.btn:active {
  border: 1px solid #95d4ce;
  background-color: #2e6f69;
}

.btn:focus, #stringBox:focus {
  outline: none;
}

.options {
  float: left;
  padding-right: 50px;
  line-height: 1.5em;
}

.actions {
  padding: 80px 0 0 60px;
}

#stringBox {
  color: black;
  text-shadow: 1px 1px 0 #ffffff77;
  border: none;
  background-color: #83ccc5;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  padding: 13px;
  border-radius: 9px;
  text-align: center;
  margin-left: 10px;
  transition: all 1s ease;
}

/* Radio button Style

 Radio button styling forked from:
 https://codepen.io/blacklightdesign/pen/OmWwzj?editors=1100

*/
.radios {
  margin-left: 16px;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
  display: none;
}
[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 1.3em;
  display: inline-block;
  font-weight: 400;
}
[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #3c948b;
  border-radius: 50%;
  background: #fff;
}
[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3c948b;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  transition: all 0.15s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 1;
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(0.8);
}


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


a {
  color:yellow;
}