* {
  box-sizing: border-box;
}

body {
  font-family: "Lucida Console", "Consolas", 'Open Sans', Arial, sans-serif;
  margin: 0;
  font-size: 16px;
}

.header {
  padding: 0px;
  background: #fff;
  color: #000;
  overflow: hidden;
  max-height: 200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  font-family: "Lucida Console";
}

.h-left {
  flex: 0 0 200px;
  overflow: hidden;
}

.h-right {
  flex: 1;
  align-self: center;
}

.header h1 {
  font-size: 40px;
  text-align: center;
}

.big_img {
  background-color: #aaa;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 60%;
  max-height: 100%;
  max-width: 100%;
}

.navbar {
  overflow: hidden;
  background-color: #000;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  min-width: 200px;
}

.navbar a.right {
  float: right;
}

.navbar a:hover {
  transition: all 0.3s ease;
  background-color: #ddd;
  color: black;
}

.navbar a.active {
  background-color: #ddd;
  color: #000;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.side {
  flex: 0 0 350px;
  background-color: #fff;
  overflow: hidden;
  height: auto;
  padding-top: 20px;
}

.main {
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
  flex: 1;
}

.main-txt {
  font-size: 128px;
  text-align: center;
}

.big-nav a {
  display: block;
}

.small-nav a {
  display: none;
}

#resume_header {
  overflow: hidden;
}

#resume_header a {
  background-color: #fff;
  color: #000;
  padding: 20px;
  text-decoration: none;
}

#resume_header a:hover {
 transition: all 0.3s ease;
 background-color: #ddd;
 color: black;
}

.resume_info h2 {
  padding-left: 40px;
  text-align: center;
}

.resume_info p {
  padding-left: 40px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {
    flex-direction: column;
  }

  .side {
    flex: 0 0;
  }

  .big-nav a {
    display: none;
  }

  .small-nav a {
    display: block;
  }
  .navbar {
    position: static;
  }
  .main-txt {
    padding-left: 0;
    text-align: center;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 412px) {
  .navbar {
    position: static;
  }

  .navbar a {
    float: none;
    width: 100%;
  }
  .header h1 {
    font-size: 24px;
  }
}
