body {
  background-color: black;
  background-image: radial-gradient(
    rgba(0, 150, 0, 0.75), black 120%
  );
  height: 100vh;
  margin: 0;
  overflow: hidden;
  padding: 2rem;
  color: white;
  font: .8rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
      0deg,
      rgba(black, 0.15),
      rgba(black, 0.15) 1px,
      transparent 1px,
      transparent 2px
    );
    pointer-events: none;
  }
}
::selection {
  background: #0080FF;
  text-shadow: none;
}
pre {
  margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400&display=swap');

.retro{
    display: inline-block;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background: TRANSPARENT;
    color: WHITE;
    font-size: 20px;
  font: .8rem Inconsolata, monospace;
    font-weight: 400;
    text-align: left;
    border: 3px solid white!important;
    border-radius: 0;
    box-shadow: 3px 3px white, 5px 5px white;
    padding-right: 5%;
    margin-top: 20px;
}

.retro:hover{
    color: white;
    background: transparent;
}

.retro:active{
    background-color: white!important;
    color: black!important;
    box-shadow: 0px 0px white;
    transform: translateX(5px) translateY(2px); 
}

.rbtn-small .dropbtn{
    box-shadow: 2px 2px white, 4px 4px white;
    padding:10px;
}

.rbtn-big{
    box-shadow: 2px 2px black, 3px 3px white;
    padding: 20px;
}

.retro-img{
    display: inline-block;
    vertical-align: middle;
    user-select: none;
    font-size: 1rem;
    background: white;
    color: black;
    font-size: 20px;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 400;
    text-align: center;
    border-radius: 0;
    box-shadow: 3px 3px black, 5px 5px white;
}

.retro-img:active{
    background-color: white!important;
    color: black!important;
    box-shadow: 0px 0px white;
    transform: translateX(5px) translateY(2px); 
}



.dropbtn:hover, .dropbtn:focus {
  background-color: white;
}

#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: green;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}