body {
  background-color: #f4af1b;
}

p {
  color: #f4af1b !important;
}

select {
  color: #f4af1b;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
select option {
  color: #f4af1b;
}

hr.titleDivider {
  border: 10px solid #00154f;
  border-radius: 50px;
  width: 113ch;
  margin-left: 0ch;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
h1 {
  font-size: 200px;
  font-family: "Open Sans";
  font: bold 300% Consolas, Monaco, monospace;
  border-right: 0.1em solid rgb(0, 0, 0);
  border-color: #a0b0e0;
  width: 31ch;
  margin: 2em 1em;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: typing 6s steps(31, end),
    blink-caret 0.5s step-end infinite alternate;
}
h2{
  font-family: "Open Sans";
  font: Consolas, Monaco, monospace;
  align-self: auto;
  margin: 2em 1em;
  white-space: nowrap;
  overflow: hidden;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  align-self: center;
  outline: 0;
  color:#f4af1b;
  box-shadow: none;
  border: 0 !important;
  background: #04247a;
  background-image: none;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
  align-self: auto;
}
/* Custom Select */
.select {
  position: relative;
  display: flex;
  width: 40em;
  height: 6em;
  line-height: 3;
  background: #5384b4;
  overflow: hidden;
  border-radius: 0.25em;
}
select {
  flex: 1;
  padding: 0 0.5em;
  color: #f4af1b;
  font-size: medium;
  align-self: center;
  cursor: pointer;
}
/* Arrow */
.select::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: #4d85bd;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}
/* Transition */
.select:hover::after {
  color: #f39c12;
}

#github {
  /* puts item on top of css backgrounds */
  z-index: 1;
  padding: 1px;
  transition: transform 0.4;
  /* Animation */
  margin: 0 auto;
}

#github:hover {
  transform: scale(1.2);
  cursor: pointer;
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
