/*This is the CSS document, the thing that controls all the style of the website*/

/*This is the background of the site*/
body {
  background: black;
  
}


/*This is the font used for the site*/
body {
  font-family: 'Courier New', monospace, Verdana;
  color: #4AF626;
}

/*This is the code for the cool typing effect for the title*/
.typewriter h1 {
    font-family: 'Courier New';
    color: #4AF626;
    letter-spacing: .17em;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    border-right: .17em solid pink;
    animation: typing 3.5s steps(30, end), blinking-cursor .5s step-end infinite;
    text-align: center;
}
  
  @keyframes typing {
    from {
      width: 0
    }
    to {
      width: 100%
    }
  }
  
  @keyframes blinking-cursor {
    from,
    to {
      border-color: transparent
    }
    50% {
      border-color: black;
    }
}

/*This is the color for the text*/
h1, h3, p1, a {
  color: #4AF626;
}

/*Header info*/

.container {
	width: 80%;
	margin: 0 auto;
}

header {
  background: black;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  float: left;
  padding: 10px 0;
}

nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 23px;

  position: relative;
}

nav a {
  color: gray;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover {
  color: #e07800;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: white;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}


h2 {
  color: #4AF626;
}


   
