@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600,700,900,300,200);
/*******
body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 33.33333%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.4) 66.66666%, rgba(255, 255, 255, 0.6) 66.66666%), linear-gradient(to right, rgba(255, 0, 0, 0.7) 33.33333%, rgba(0, 255, 0, 0.7) 33.33333%, rgba(0, 255, 0, 0.7) 66.66666%, rgba(0, 0, 255, 0.7) 66.66666%);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}.   *****/

tbody {
  background: #222;
  color: #fff;
}

h1 {
  font-size: 45px;
  font-weight: 200;
  text-shadow: 2px 0 rgba(255, 0, 0, 0.9), -2px 0 rgba(0, 0, 255, 0.9);
  padding: 6px;
  font-family: "Source Code Pro";
}

h2 {
  font-size: 25px;
  font-weight: 200;
  text-shadow: 2px 0 rgba(255, 0, 0, 0.9), -2px 0 rgba(0, 0, 255, 0.9);
  padding: 6px;
  font-family: "Source Code Pro";
}

h3 {
  font-size: 20px;
  font-weight: 200;
  text-shadow: 2px 0 rgba(255, 0, 0, 0.9), -2px 0 rgba(0, 0, 255, 0.9);
  padding: 6px;
  font-family: "Source Code Pro";
}

h4 {
  font-size: 20px;
  font-weight: 200;
  text-shadow: 2px 0 rgba(255, 0, 0, 0.9), -2px 0 rgba(0, 0, 255, 0.9);
  padding: 6px;
  font-family: "Source Code Pro";
}
/******* POP UP  ******/

.popup-link{
  display:flex;
  flex-wrap:wrap;
}

.popup-link a{
    background: #333;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-size:17px;
    cursor:pointer;
    margin:20px;
    text-decoration:none;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    font-family: 'Saira Semi Condensed',
    display: flex;
    align-items: center;
}
.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}
.popup-content p{
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
}
.popup-content a.close{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration:none;
}

.popup-content a.close:hover{
  color:#333;
}

.popup-content span:hover,
.popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3{
  margin:10px;
}
/*End popup styles*/

/* Additional styles */
.popup-style-2{
  transform: scale(0.3);
  
}
'
.popup-style-3{
  left:100%;
  
}

.popup-style-3:target{
  left:0;
}

.popup-style-5{
  top:100%;
  
}

.popup-style-5:target{
  top:0;
}


/*====================  ====================*/
/* Quick LCD NOTE*/
.lcd {
  display: block;
  margin: 1em auto;
  background: #9ea18c;
  border: 3px solid black;
  max-width: 20em;
  padding: 0.65em 1em;
  box-shadow: inset 0 0 5px 5px rgba(0,0,0,.1);
  font-weight: bold;
  font-family: monospace;
  letter-spacing: 0.1em;
  font-size: 1.2em;
  line-height: 160%;
  color: #21230e;
  text-shadow: -1px 2px 1px rgba(0,0,0,.1);
}

.lcd small {
  color: #949782;
  text-shadow: none;
  float: right;
}

/* Blink */
.container {
  height: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle, .circle::before {
  content: " ";
  margin: 15px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s;
  background-color: #FF0055;
}

.circle::before {
  animation: mymove 2s infinite;
  position: absolute;
  background-color: #00FF00
}

@-webkit-keyframes mymove {
  50%   {
    transform: scale(2);
    opacity: 0
  }
  100%   {
    transform: scale(2);
    opacity: 0
  }
}
/*====================  ====================*/


