html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 370px;
    background-color: #000000;
}

* {
    padding: 0;
    margin: 0;
}

pre {
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.fade_me_in {
    opacity: 0;
}


.flex {
  display: flex;
  align-items: top;
}

.one-third-flex {
  flex: 1 1 auto;
  max-width: 37%;
}

.two-thirds-flex {
  flex: 2 1 auto;
  max-width: 63%;
}

.height-auto {
  height: auto;
}

.terminal-light-green {
  color: #33ff33;
  text-shadow: 0 0 5px #C8C8C8;
}

.terminal-text {
  font-family: 'Courier New', monospace;
  font-size: 12pt;
}

hr.terminal-light-green-hr {
  border: 1px dotted #33ff33;
}

.padded-20 {
  padding: 20px;
}

.padding-left-15p {
  padding-left: 15%;
}

.no-decoration {
  text-decoration: none;
}

/* TOPBAR:
*/
#topbar {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  height: 3.25em;
  border-bottom: 1px solid #121212;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.65);
  font-family: Arial, Helvetica, sans-serif;
}
#topbar .topbarlogo {
  float: left;
  padding: 0.65em 0.65em 0.5em 1.5em;
}
#topbar .topbartitle {
  float: left;
  color: #eeeeee;
  padding: 1em 0.5em 1em 0em;
  transition: 0.4s;
}
#topbar .topbartitle:hover {
    color: #bbbbbb;
}
#topbar ul {
    float: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-right: 0.5em;
    overflow: hidden;
}
#topbar li {
    float: left;
}
/* desktop menu links */
#topbar li a, .dropbtn, #topbar form {
    display: inline-block;
    color: #bbbbbb;
    text-align: center;
    padding: 1em 1.25em 1em 1.25em;
    text-decoration: none;
    transition: 0.4s;
}
/* Desktop menu items hover */
#topbar li a:hover, .dropdown:hover .dropbtn, #topbar form:hover {
    color: #eeeeee;
}
#topbar li.dropdown {
    display: inline-block;
}
#topbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
#topbar .dropdown-content a {
    color: black;
    padding: 1em 1.5em;
    text-decoration: none;
    display: block;
    text-align: left;
}
#topbar .dropdown-content a:hover {
  background-color: #f1f1f1;
}
#topbar .dropdown:hover .dropdown-content {
    display: block;
}


/* menu bar clases for anmation */
.menuItem1, .menuItem2, .menuItem3, .menuItem4, .menuItem5 {
  animation-name: topbarAnimation;
}
.menuItem1 {
  animation-duration: 2.5s;

}
.menuItem2 {
  animation-duration: 2s;

}
.menuItem3 {
  animation-duration: 1.5s;

}
.menuItem4 {
  animation-duration: 1s;
}
.menuItem5 {
  animation-duration: 0.75s;
}
@keyframes topbarAnimation {
  from {opacity: 0.0}
  to {opacity: 1.0}
}




#contactform {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 200px;
  -webkit-transition: height 0.5s;
  -ms-transform: height 0.5s;
  transform: height 0.5s;
  transition: height 0.5s;
}

#contactform form {
  width: 77%;
  margin: 0 auto;
  display: block;
  text-align: center;
}

#contactform input {
  padding: 0.7em;
  margin: 0.3em;
  display: inline-block;
  border: 1px solid #33ff33;
  background-color: #000000;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  font-size: 12pt;
}

#contactform textarea {
  width: 100%;
  height: 8em;
  padding: 0.7em;
  margin: 0.3em;
  resize: none;
  display: inline-block;
  border: 1px solid #33ff33;
  background-color: #000000;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 12pt;
}

input:focus,
textarea:focus {
  background-color: #000000;
  border: 2px solid #33ff33;
  outline: none;
}

::placeholder {
  color: #33ff33;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #33ff33;
}

::-ms-input-placeholder {
  color: #33ff33;
}

#contactform input[type=submit] {
  display: block;
  float: right;
  background-color: #000000;
  border-radius: 6px;
  border: 1px solid #33ff33;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  transition: 0.3s;
  width: 8em;
  height: 3em;
  -webkit-appearance: none;
}

#contactform input[type=submit]:hover {
  background-color: #006a00;
  color: #33ff33;
}

.g-recaptcha {
  display: block;
  float: right;
  padding: 6px;
  width: 304px;
}

.copyright {
  text-align: center;
  padding-bottom: 50px;
  width: 100%;
}

.copyright p {
  padding-top: 50px;
}


@media only screen and (max-width: 868px) {
  #menuiconpic {
    display: inline-block;
    background-image: url(https://flaresoftware.com/public/images/menu-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 40px;
    padding: 0.5em;
    float: right;
    cursor: pointer;
  }
  .menuicon ul, .menu-icon:active ul {
    display: none;
    padding: 0px;
    background: rgba(0, 0, 0, 0.80);
    border: 1px solid #444444;
    width: 100%;
  }
  .menuicon li {
    padding-left: 0.5em;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #555555;
  }
  .menuicon li a, .menuicon li form {
    text-align: center;
    padding: 0.5em;
    height: 100%;
    width: 100%;
  }

  #contactform form {
    width: 92%;
  }

  .flex {
    display: inline-block;
  }

  .one-third-flex {
    max-width: none;
  }

  .two-thirds-flex {
    max-width: none;
  }

  .padding-left-20p {
    padding-left: 0;
  }

  .terminal-text {
    font-size: 10pt;
  }

  .padding-left-15p {
    padding-left: 0px;
  }

}

@media only screen and (max-width: 450px) {
  .terminal-text {
    font-size: 8pt;
  }
}

