body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-weight: 400;
  color: #160a44;
}

h1, h2 {
  margin: auto;
}

p {
  color: #f5f5f5;
}

header {
  margin: 0;
  width: 100%;
  background: #1db2b4;
  text-align: center;
  position: relative;
}

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

nav {
  width: 100%;
  height: auto;
  background: #021b4f;
}

nav img {
  float: left;
  width: 10%;
  height: auto;
  margin-left: 10%;
  border-radius: 50%;
  display: block;
}

nav p {
  padding: 10px;
  height: auto;
  margin-left: 10%;
}

nav img:hover {
  -webkit-transform: scale(0.12);
  transform: scale(0.12);
  transition: all ease-in-out 700ms;
}

#navmenu {
  padding: 2%;
  float: right;
}

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

nav li {
  display: inline-block;
  padding-top: 2.5%;
  margin-left: 10%;
}

nav ul li a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav ul li a:hover {
  color: rgb(213, 125, 33);
}

nav ul li a::before {
  content: '';
  display: block;
  height: 5px;
  background: #5e0f07;
  width: 0;
  transition: all ease-in 200ms;
  top: 18px;
}

nav ul li a::after {
  content: '';
  display: flex;
  height: 2px;
  background: rgb(128, 130, 7);
  width: 15%;
  transition: all ease-in-out 500ms;
  bottom: 15px;
}

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

nav ul li a:hover::after {
  width: 100%;
}

section {
  width: 100%;
  background-color: #021b4f;
}

#image {
  width: 25%;
  display: block;
  margin: auto;
}

#image:hover {
  transition: all ease-in-out 700ms;
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

#mainContainer {
  color: #f5f5f5;
  background: #3B0949;
  padding-left: 5%;
  padding-bottom: 1%;
}
