/*Main Style Sheet*/

@font-face {
    font-family: 'Terminus';
    font-style: normal;
    font-weight: normal;
    src: url('https://starscript.ca/files/documents/fonts/Terminus.ttf') format('ttf');
}

/*Global Styles*/


input {
  background-color: #121212;
  padding: 5px;
  border: 1px solid grey;
  color: #888888;
  font-family: 'Terminus', sans-serif;
}

html {
  background-color: #333333;
}

body {
  color: #888888;
  font-family: 'Terminus', sans-serif;
  font-size: 0.875em;
}

a {
  text-decoration: none;
  color: lightgrey;
}

code {
  font-size: 1.20em;
}

title {
	font-family: 'Terminus';
}


/*Start Header Styles*/

#mainTitleWrapper {
  overflow: auto;
  width: 75%;
  max-width: 1300px;
  min-width: 800px;
  background-color: #232323;
  margin: 0 auto;
  margin-bottom: 25px;
}

#mainTitleContent {
  margin: 25px;

}

#mainTitleContent .titleMain {
  font-size: 3em;
}

#mainTitleNavigation {
  margin-top: 10px;
}

#mainTitleNavigation .navItem {
  text-decoration: none;
  color: #666666;
  margin-right: 15px;
  font-size: 1.3em;
}

#mainTitleNavigation .navItem:hover{
  color: #444444;
}

#bodyWrapper {
  width: 75%;
  max-width: 1300px;
  min-width: 800px;
  background-color: #232323;
  margin: 0 auto;
  margin-bottom: 25px;
  overflow: auto;
}

@media screen and (max-width: 1350px) {
  #bodyWrapper {
    width: 100%;
  }

  #mainTitleWrapper {
    width: 100%;
  }
}

#bodyContent {
  padding: 25px;
  overflow: auto;
}
/*End Header Styles*/

/*Start Footer Styles*/

#footerWrapper {
  width: 75%;
  max-width: 1300px;
  background-color: #232323;
  margin: 0 auto;
}

#footerContent {
  padding: 7.5px;
  text-align: center;
}

/*End Footer Styles*/

.info {
  padding: 20px;
  color: white;
  background-color: #7FDBFF;
      -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.success {
    position: absolute;
    z-index: 9001;
    width: 50%;
    top: 50px;
    left: 25%;
    padding: 25px;
    border-radius: 3px;
    font-size: 20px;
    text-align: center;
    background-color: #39C16C;
    margin-top: 20px;
    
     animation: response 0.5s 1;
    -webkit-animation: response 0.5s 1;
    animation-fill-mode: forwards;
    
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
}

.warning {
    position: absolute;
    background-color: #FFDC00;
    z-index: 9001;
    width: 50%;
    top: 50px;
    left: 25%;
    padding: 25px;
    border-radius: 3px;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    
     animation: response 0.5s 1;
    -webkit-animation: response 0.5s 1;
    animation-fill-mode: forwards;
    
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
    
}

.error {
    background-color: #FF4136;
    position: absolute;
    z-index: 9001;
    width: 50%;
    top: 50px;
    left: 25%;
    padding: 25px;
    border-radius: 3px;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    
     animation: response 0.5s 1;
    -webkit-animation: response 0.5s 1;
    animation-fill-mode: forwards;
    
    animation-delay:2s;
    -webkit-animation-delay:1s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;
}

@keyframes response {

  from {
    opacity: 1;
    display: block;
  } to {
    opacity: 0;
    display: none;
    top: 0px;
  {
}

@-webkit-keyframes response {

    from {
      opacity: 1;
    } to {
      opacity: 0;
      display: none;
      top: 0px;
    }
}
