body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

header,
nav,
footer,
section,
article,
div {
  box-sizing: border-box;
}

.main-section {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.header {
  min-height: 50px;
}

.header-inner {
  background-color: #0C0032;
  color: white;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-logo {
  margin-top: auto;
  margin-bottom: auto;
}
.logo {
  height: 80px;
}

.header-title {
  margin-top: 15px;
  padding: 10px 5px;
  margin-right: 10px;
  font-size: 1.4em;
}

.name {
  font-family: Roboto;
  letter-spacing: 2.5px;
  font-weight: lighter;
  font-variant: small-caps;
}

.title {
  font-family: 'Open Sans Condensed';
  text-align: center;
  letter-spacing: 2px;
  padding: 2px 0px;
}

.nav {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #190061;
}

.menus {
  width: 100%;
  padding: 0;
  margin: 0;
}

.menu {
  box-sizing: border-box;
  display: inline-block;
  width: 24%;
  padding: 20px;
  text-align: center;
  line-height: 26px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.nav a {
  text-decoration: none;
  padding: 1.2em;
  font-size: 1.2em;
  color: white;
}

.nav a:hover {
  text-decoration: underline;
  background-color: rgb(227, 236, 224);
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
  color: blue;
}

.about {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #1A1A1D;
}

.about h2 {
  font-size: 3em;
  font-weight: lighter;
  letter-spacing: 1px;
  text-align: center;
  padding: 15px;
  color: blue;
}

.about-me {
  padding: 20px;
  text-align: center;
  line-height: 1.4em;
  font-size: 1.5em;
  color: white;
}

.about-me p {
  margin: 20px;
}

.projects {
  background: #190061;
  color: #66FCF1;
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.featured-work {
  text-align: center;
  font-variant: small-caps;
  font-size: 2em;
  padding: 15px;
}

.project {
  box-sizing: border-box;
  background-color: #1A1A1D;
  color: #66FCF1;
  text-align: center;
  margin: 1%;
  padding: 20px 20px;
  border: 2px solid black;
  border-radius: 15px;
  width: 100%;
}

.project-img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.project-title {
  font-size: 2em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-variant: small-caps;
  padding: 5px;
}

.description {
  font-family: Roboto;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.project-discription {
  font-size: 1.2em;
}

.project-link {
  color: rgb(57, 87, 191);
  text-decoration: none;
  font-size: 1.5em;
  padding: 1.2em;
}

.project-link:hover {
  text-decoration: underline;
}

.coding-block {
  width: 100%;
}

.coding {
  width: 100%;
  max-height: 700px;
}

.footer-container {
  box-sizing: border-box;
  min-height: 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  background: #1A1A1D;
}

.fa {
  padding: 20px;
  font-size: 50px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  background: white;
  transition: background .2s ease-out,transform .3s ;
}

.fa-facebook:hover {
  background: blue;
  color: white;
  transform: rotate(360deg);
}

.fa-twitter:hover {
  background: #55ACEE;
  color: white;
  transform: rotate(360deg);
}

.fa-linkedin:hover {
  background: #007bb5;
  color: white;
  transform: rotate(360deg);
}

.fa-github:hover {
  background: #333;
  color: white;
  transform: rotate(360deg);
}

.fa-envelope:hover {
  background: #b71610;
  color: white;
  transform: rotate(360deg);
}
