@charset "UTF-8";
/* CSS Document */

body {
  background-color:#000000;
  background-size: 100%;
  margin: 0;
  font-family: 'Merienda', cursive;
}
header {
  padding: 10px 0;
  background: repeating-linear-gradient(45deg, #f2f2f2, #f2f2f2 20px, #e6e6e6 20px, #e6e6e6 40px);
  box-shadow: 0 4px 6px rgba(0,0,0,.2);  
}
p {
  padding-top: 5px;
}

/* About me Page */
#portraitbox {
  background-color: lightgray;
  position: relative;
  text-align:center;
}
#biobox {
  background-color: whitesmoke;
  width: 900px;
  position:relative;
  text-align:justify;
  padding:60px;
}
#bio {
  display:inline;
  padding-top: 30px;
  padding-left: 30px;
}
#portrait {
  display:inline-table;
  padding-top: 100px;
  padding-bottom: 100px
}

/* Contact page */
#contactpage{
  background-color: #e2e2e2;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
#contactbox {
  background-color:#e8e8e8;
  margin: 10px;
  padding: 100px;
}
#contactinfo {
  position: relative;
  float: left;
}
#linkedin {
  position: relative;
}

/* resume page */
#resumebox{
  background-color: #e2e2e2;
  width: 100%;
  height: auto;
  padding-top: 10px;
  position: relative;
}

/* main layout */
#row div{
  text-align: center;
}
#topleft {
  background-color:#ffffff;
  height: 400px;
  position: relative;
}
#logo{
  max-width: 25%;
  position: absolute;
  top: 0px;
  left: 0px;
}
#about{
  position: absolute;
  top: 73%;
  left: 62%;
}
#about2{
  position: absolute;
  top: 90%;
  left: 40%;
}
#topright {
  background-color:#f2f2f2;
  height: 400px;
  position: relative;
}
#homeblob {
  position: absolute;
  top: 0;
  right: 90px;
}
#bottomleft{
  background-color:#e8e8e8;
  height: 400px;
}
#bottomright{
  background-color:#e2e2e2;
  height: 400px;
}
#sample {
  margin-top: 50px;
}
.responsive {
  max-width: 46.5%;
  height: auto;
  align-content: center;
  padding: 10px;
}
.responsive2 {
  max-width: 100%;
  max-height: auto;
}
/* Links */
a {
  font-size: 16px;
}
/* unvisited link */
a:link {
  color: black;
}
/* visited link */
a:visited {
  color: black;
}
/* mouse over link */
a:hover {
  color: orangered;
}
.container {
  padding: 0px;
  max-width: 1024;
  margin: 0 auto;
}

/* logo */
.logo-box {
  float: left;
  margin-right: 20px;
}
.logo-box a {
  outline: none;
  display: block;
}
.logo-box img {
  display: block;
}
/* navagation */
nav {
  overflow: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding-right: 20px;
  float: right;
}
nav li {
  display: inline-block;
  margin-left: 6px;
  height: 70px;
  line-height: 70px;
  transition: .5s linear;
}
nav a {
  text-decoration: none;
  display: block;
  position: relative;
  color: #868686;
}
nav a:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 15px;
  background: #868686;
  transition: width .5s linear;  
}
nav a:hover:after {
  width: 100%;
}

@media screen and (max-width: 660px) {
  header {
    text-align: center;
  }
  .logo-box {
    float: none;
    display: inline-block;
    margin: 0 0 16px 0;
  }
  ul {
    float: none;
  }
  nav li:first-of-type {margin-left: 0;
  }
}

@media screen and (max-width: 550px) {
  nav {
    overflow: visible;
  }
  nav li {
  display: block;
  margin: 0;
  height: 40px;
  line-height: 40px;
  }
  nav li:hover {background: rgba(0,0,0,.1);
  }
  nav a:after {content: none;
  }
}

.navbar.navbar-1 .navbar-toggler-icon {
  background-image: url('https://mdbootstrap.com/img/svg/hamburger6.svg?color=000');
  position:relative;
}