@import url('https://fonts.googleapis.com/css?family=PT+Sans');

/*CSS Colors*/
:root {
  --primary-color: #bb9900;
  --primary-color-hover: #77d142;
  --secondary-color: #4681ce;
  --secondary-color-hover: #9432cc;
  --light-color: #d42d65;

}

body {
  font-family: 'PT Sans', sans-serif;
  background-color: #252529;
  /* background-image: url("../img/sea.jpg"); */
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.background{
  margin: 0;
  padding: 0;
  background: url('../img/sea.jpg') no-repeat center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.background2{
  margin: 0;
  padding: 0;
  background: url('../img/laptop.jpg') no-repeat center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
img {
  width: 100%;
  height: 60vh;
}

a {
  text-decoration: none;
  color: #60ff04;
}

.section {
  padding: 2rem 0;
}

.section.head {
  font-size: 2.5rem;
  margin: 0;
}

.section {
  font-size: 2rem;
}

/*Showcase*/
#showcase {
  margin: 0;
  padding: 0;
  background: url('../img/programming.png') no-repeat center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#showcase .container {
  margin-top: 25vh;
}

#showcase .h1 {
  font-size: 4rem;
  margin-bottom: 0;
}

#showcase .h2 {
  font-size: 2rem;
}

.lead {
  font-size: 1.5rem;
}

.container {
  max-width: 1180px;
  text-align: center;
  margin: 0 auto;
  padding: 0 3rem;
}

.font{
  color: #252529;
}

nav {
  height: 40px;
  width: 100%;
  background-color: #333;
  color: #eee;
  position: fixed;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  float: left;
}

nav a {
  display: inline-block;
  width: 100px;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  color: #eee;
  text-decoration: none;
}

nav li:hover {
  background-color: #444;
}

nav a#openup {
  display: none;
}

@media screen and (max-width: 580px) {
  .hide-on-small {
    display: none;
  }

  #showcase {
    height: 50vh;
  }

  #showcase .container {
    margin-top: 15vh;
  }

  #showcase h1 {
    font-size: 3rem;
  }

  #showcase h2 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2.8em;
  }

  nav {
    height: auto;
    border-bottom: 0;
  }

  nav ul {
    display: none;
    height: auto;
  }

  nav li {
    width: 100%;
    float: left;
    position: relative;
  }

  nav a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
    background: #333;
    border-bottom: 1px solid #555;
  }

  nav a:hover {
    background: #444;
  }

  nav a#openup:after {
    content: "|||";
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari and Chrome */
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 20px;
  }

  nav a#openup {
    display: block;
    background-color: #333;
    width: 100%;
    position: relative;
  }
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* For IE 6/7 (trigger hasLayout) */