body {
  font-family: 'Roboto', sans-serif;
  background-color: white;
   margin: 0px; 
   padding: 0px;
}

.banner-container {
  color: white;
  text-align: center;
  background-image: url(./img/comic2.jpg);
  background-size: cover;
  height: 680px;
  width: 100%;
  padding: 10px 0 110px 0;
}

.nav ul {
  list-style: none;
  background-color: black;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-size: 1.1em;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}
 
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background-color: grey;
}
 
.nav a.active {
  /* background-color: #fff; */
  color: #fff;
  cursor: default;
}
 
@media screen and (min-width: 600px) {
  .nav li {
    width: 120px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.1em;
  }
}
 
  .nav li {
    float: right;
    margin-right: 10px;
  }

.hello {
  position: relative;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 130px;
  text-shadow: 8px 8px 16px #000000;
}

.greeting {
  position: relative;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  text-shadow: 8px 8px 16px #000000;
}

.about-me {
  background-image: url(./img/superman.jpg);
  color: white;
  text-align: center;
  width: 100%;
  padding: 50px 0;
  margin: 20px 0 0 0;
  background-repeat: no-repeat;
  text-shadow: 8px 8px 16px #000000;
}

.little-bit {
  padding: 25px 0 0 0;
  font-size: 35px;
}

.glasses {
  padding: 0 0 25 0;
}

.about-me-container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.selfie-brand-container {
  text-align: center;
}

.selfie {
  height: 260px;
  width: 210px;
  margin: 60px 60px 3px 0;

}

.selfie-name {
  font-size: 32px;
  margin: 0 60px 0 0;
}

.selfie-title {
  font-size: 25px;
  margin: 0 60px 60px 0;
}

.brand-statement {
  text-align: left;
  font-size: 24px;
  padding: 90px 10px 0 0;
  /* border-bottom: solid 2px black;
  margin-bottom: 50px; */
}

.resume {
  width: 110px;
  height: 30px;
  font-size: 14px;
  background-color: lightgrey;
  border: 2px solid rgb(48, 48, 48);
  border-radius: 8px;
}

.resume:hover {
  background-color: cornflowerblue;
}

.my-work {
  background-image: url(./img/batman.jpg);
  color: white;
  text-align: center;
  width: 100%;
  padding: 50px 0;
  background-repeat: no-repeat;
  text-shadow: 8px 8px 16px #000000;
}

.work {
  padding: 25px 0 0 0;
  font-size: 35px;
}

.project-row-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  border-bottom: solid black 2px;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.5;
}

.star-wars {
  height: 300px;
  width: 550px;
  margin: 20px;
}

.kryptonite {
  height: 300px;
  width: 550px;
  margin: 20px;
}

.project-row-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  border-bottom: solid black 2px;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.5;
}

.M8D {
  height: 300px;
  width: 550px;
  margin: 20px;
}

.project-row-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  border-bottom: solid black 2px;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.5;
}

.capitol {
  height: 300px;
  width: 550px;
  margin: 20px;
}

.project-row-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  border-bottom: solid black 2px;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.5;
}

.figcaption {
  font-size: 20px;
}

.project-code-link {
  width: 150px;
  height: 40px;
  font-size: 14px;
  background-color: lightgrey;
  border: 2px solid rgb(48, 48, 48);
  border-radius: 8px;
  margin-top: 20px;
}

.project-code-link:hover {
  background-color: cornflowerblue;
}

.in-touch {
  background-image: url(./img/wonder-woman.jpg);
  color: white;
  text-align: center;
  width: 100%;
  padding: 50px 0;
  background-repeat: no-repeat;
  text-shadow: 8px 8px 16px #000000;
}

.touch-text {
  padding: 25px 0 0 0;
  font-size: 35px;
}

.contact-info {
  text-align: center;
  padding: 60px 0 20px 0;
}

.email {
  font-size: 28px;
  color: black;
}

.icons {
  margin: 30px;
  padding: 20px 0 0px 0;
  zoom: 150%;
  
}

/* navbar design: http://css-snippets.com/simple-horizontal-navigation/ */
