*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', serif;
  font-size: 64px;
}

body {
  display: grid;
  align-items: center;
  background: url('/assets/bodyBG.jpg') no-repeat center center fixed;
  background-size: cover;
}

.header {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 80vw;
  left: 10vw;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: white;
  width: 60vw;
  max-height: 10vh;
}

.header nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 30px;
  text-decoration: none;
  font-size: .5rem;
}

.header nav img {
  width: 1rem;
  height: 1rem;
}

.hero {
  text-align: center;
  background: url('/assets/heroBG.jpeg') no-repeat center center;
  height: 100vh;
  background-size: cover;
}

.hero h1 {
  padding-bottom: 20px;
  padding-top: 200px;
  font-size: 1rem;
  font-weight: bold;
  color: #6FC3DF;
}

.hero h3 {
  padding-bottom: 20px;
  font-size: .65rem;
  font-weight: bold;
  color: #DF740C;
}

.hero button {
  background: none;
  border: 1px solid #E6FFFF;
  font-size: .4rem;
  padding: .2rem;
  color: #E6FFFF;
  border-radius: 4px;
}

.about-me {
  height: 50vh;
  background-color: rgb(42, 42, 42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6FFFF;
}

.am-container {
  max-width: 60vw;
  max-height: 30vh;
  border: 2px solid white;
  display: inline-block;
}

.am-left img {
  height: 50px;
  width: 50px;
}
.am-picture img {
  height: 200px;
  width: 200px;
}

.projects {
  background-color: #0c141f60;
  height: 100vh;
}