
/* the four horsemen of the layout.. */
/* position, display, float, z-index */
* {
  margin: 0; /* t r b l trouble */
  /* margin: 13px 45px; /* t/b l/r */
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box; /* magic line */
}
.bigFancyHeading {
  width: 70%;
  font-size: 1.8em;
  background: linear-gradient(to right, rgba(33, 33, 33, 1), 
    rgba(33, 33, 33, .42),rgba(33, 33, 33, 0));
  padding-left: 21px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-left: 7px solid #f00;
  text-align: left;
  margin-bottom: 50px;
}
#samplesHeading {
  margin: 0 auto;
  margin-left: 8%;
}
p {
  margin: 20px 0;
}
body {
  background: #000;
  font-size: 1.6em;
  color: #fff;
}
nav {
  position: fixed;
  /* display or position for z-index to work */
  z-index: 3; /* stacking order (up to 65K layers) */
  background: rgba(55, 55, 55, .67);
  width: 100%;
  height: 70px;
  top: 60px;
  text-align: right;
  padding-right: 100px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
  #logo {
    width: 135px;
    position: absolute;
    left: 30px;
    top: -50px;
  }
  a {
    font-size: 1.6em;
    color: #000;
    font-family: "calibri", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 21px;
    text-decoration: none;
  }
  a:hover {
    color: #f00;
    text-decoration: underline;
  }
header {
  width: 100%;
  height: 700px;
  background: url('../assets/images/woode-frame.jpg');
  background-size: cover;
  /*background-repeat: no-repeat;*/
  /*background-position-y: -350px;*/
  border-bottom: 0.5px solid #222;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight:700;
  font-style: normal;
  font-size: 1.5em;
  padding-top: 250px;
  
}
#main {
  width: 100%;
  background: #777;
}
section {
  width: 100%;
  min-height: 700px;
  padding: 100px; /* this should the min */
}
#about {
  width: 50%;
  background: #777;
  float: left;
  border-right: 0px solid #000;
}
  #about > img {
    border-radius: 8px;
    border: 0px solid #777;
    margin: 7px;
  }
#skills {
  
  width: 50%;
  background: #777;
  float: left;
 

}
#samples {
  width: 100%;
  background: url('../assets/images/samplesBkg.png');
  background: #777;
  background-size: 100%;
  clear: both;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
  .thumbs {
    width: 20%;
    margin: 15px;
    border: 5px solid #111;
    border-radius: 16px;
    opacity: .67;
  }
  .thumbs:hover {
    border: 5px solid #fff;
    opacity: 1;
    box-shadow: 3px 3px 21px #111;
    cursor: pointer;
  }
  #hobbies{
  width: 100%;
  background: #777;
}
#references {
  width: 100%;
  background: #bbb;
}
#contact {
  width: 100%;
  background: url('../assets/images/Framers-3.png');
  background-size: cover;
  font-size: 1.6em;
  text-align: center;
}
  #contactForm {
    width: 50%;
    margin: 0 auto;
    background: rgba(55, 55, 55, .83);
    padding: 50px;
    border-radius: 16px;
    border: 5px solid #000;
  }
  input {
    font-size: 1em;
    border-radius: 8px;
    display: block; /* all elements are block or inline */
    margin: 15px 0;
    padding: 0 15px;
    width: 100%;
  }
  input[type='submit'] {
    margin-top: 40px;
    padding: 10px 30px;
    background: rgb(173, 231, 173);
    font-size: .9em;
  }
  input[type='submit']:hover {
    background: #248cdc;
    cursor: pointer;
  }
footer {
  text-align: center;
  font-size: .9em;
  height: 100px;
  padding-top: 15px;
  background: #222;
  color: #fff;
  margin-bottom: 50px;
  border-bottom: 2px solid #fff;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .container {
      width: 90%;

  }
}