body {
  margin: 0;
  font-family: Courier New, monospace;
  background-image: url(Personal%20Branding%20Website%20Background.png);
}

a {
  color: #000;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #368155;
  outline: none;
  text-decoration: none;
}


<style>
* {
    box-sizing: border-box;
}

.row::after {
    content:"";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

/* Navigation Stuff */
    /* header */
            .header {
              background-color: #00a9d4;
              box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
              position: fixed;
              width: 100%;
              z-index: 3;
            }

            .header ul {
              margin: 0;
              padding: 0;
              list-style: none;
              overflow: hidden;
              background-color: #fff;
            }

            .header li a {
              display: block;
              padding: 20px 20px;
              border-right: 1px solid #f4f4f4;
              text-decoration: none;
            }

            .header li a:hover,
            .header .menu-btn:hover {
              background-color: black;
            }

            .header .logo {
              display: block;
              float: left;
              font-size: 2em;
              padding: 10px 20px;
              text-decoration: none;
            }

            /* menu */

            .header .menu {
              clear: both;
              max-height: 0;
              transition: max-height .2s ease-out;
            }

            /* menu icon */

            .header .menu-icon {
              cursor: pointer;
              display: inline-block;
              float: right;
              padding: 28px 20px;
              position: relative;
              user-select: none;
            }

            .header .menu-icon .navicon {
              background: #333;
              display: block;
              height: 2px;
              position: relative;
              transition: background .2s ease-out;
              width: 18px;
            }

            .header .menu-icon .navicon:before,
            .header .menu-icon .navicon:after {
              background: #00a9d4;
              content: '';
              display: block;
              height: 100%;
              position: absolute;
              transition: all .2s ease-out;
              width: 100%;
            }

            .header .menu-icon .navicon:before {
              top: 5px;
            }

            .header .menu-icon .navicon:after {
              top: -5px;
            }

            /* menu btn */

            .header .menu-btn {
              display: none;
            }

            .header .menu-btn:checked ~ .menu {
              max-height: 240px;
            }

            .header .menu-btn:checked ~ .menu-icon .navicon {
              background: transparent;
            }

            .header .menu-btn:checked ~ .menu-icon .navicon:before {
              transform: rotate(-45deg);
            }

            .header .menu-btn:checked ~ .menu-icon .navicon:after {
              transform: rotate(45deg);
            }

            .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
            .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
              top: 0;
            }

            /* 48em = 768px */

            @media (min-width: 48em) {
              .header li {
                float: left;
              }
              .header li a {
                padding: 20px 30px;
              }
              .header .menu {
                clear: none;
                float: right;
                max-height: none;
              }
              .header .menu-icon {
                display: none;
              }
            }

        #header {
          height: 80px;
          transition: all 0.5s;
          z-index: 997;
          transition: all 0.5s;
          padding: 20px 0;
          background: #00a9d4;
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
        }

        #header.header-scrolled,
        #header.header-pages {
          height: 60px;
          padding: 10px 0;
        }

        .main-pages {
          margin-top: 60px;
        }

/* Desktop Navigation */
    .main-nav {
      /* Drop Down */
      /* Deep Drop Down */
    }

    .main-nav,
    .main-nav * {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .main-nav > ul > li {
      position: relative;
      white-space: nowrap;
      float: left;
    }

    /* Navigation Buttons Settings */
    .main-nav a {
      display: block;
      position: relative;
      color: black;
      padding: 0px 20px;
      transition: 0.3s;
    }

    .main-nav a:hover,
    .main-nav .active > a,
    .main-nav li:hover > a {
      background-color: black;
      color: white;
      text-decoration: none;
    }

    .main-nav .drop-down ul {
      display: block;
      position: absolute;
      left: 0;
      top: calc(100% + 30px);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      padding: 10px 0;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: ease all 0.3s;
    }

    .main-nav .drop-down:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }

    .main-nav .drop-down li {
      min-width: 180px;
      position: relative;
    }

    .main-nav .drop-down ul a {
      padding: 10px 20px;
      font-size: 13px;
      color: black;
    }

    .main-nav .drop-down ul a:hover,
    .main-nav .drop-down ul .active > a,
    .main-nav .drop-down ul li:hover > a {
      color: white;
    }

    .main-nav .drop-down > a:after {
      content: "\f107";
      padding-left: 10px;
    }

    .main-nav .drop-down .drop-down ul {
      top: 0;
      left: calc(100% - 30px);
    }

    .main-nav .drop-down .drop-down:hover > ul {
      opacity: 1;
      top: 0;
      left: 100%;
    }

    .main-nav .drop-down .drop-down > a {
      padding-right: 35px;
    }

    .main-nav .drop-down .drop-down > a:after {
      content: "\f105";
      position: absolute;
      right: 15px;
    }

/* Mobile Navigation */
    .mobile-nav {
      position: fixed;
      top: 0;
      bottom: 0;
      z-index: 9999;
      overflow-y: auto;
      left: -260px;
      width: 260px;
      padding-top: 18px;
      background: rgba(32,77,51, 0.8);
      transition: 0.4s;
    }

    .mobile-nav * {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mobile-nav a {
      display: block;
      position: relative;
      color: white;
      padding: 10px 20px;
      font-weight: 500;
      font-size: 16px;
    }

    .mobile-nav a:hover,
    .mobile-nav .active > a,
    .mobile-nav li:hover > a {
      background-color: black;
      color: white;
      text-decoration: none;
    }

    .mobile-nav .drop-down > a:after {
      content: "\f078";
      padding-left: 10px;
      position: absolute;
      right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
      content: "\f077";
    }

    .mobile-nav .drop-down > a {
      padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
      display: none;
      overflow: hidden;
    }

    .mobile-nav .drop-down li {
      padding-left: 20px;
    }

    .mobile-nav-toggle {
      position: fixed;
      right: 0;
      top: 0;
      z-index: 9998;
      border: 0;
      background: none;
      font-size: 24px;
      transition: all 0.4s;
      outline: none !important;
      line-height: 1;
      cursor: pointer;
      text-align: right;
    }

    .mobile-nav-toggle i {
      margin: 18px 18px 0 0;
      color: #368155;
    }

    .mobile-nav-overly {
      width: 100%;
      height: 100%;
      z-index: 9997;
      top: 0;
      left: 0;
      position: fixed;
      background: rgba(0,0,0, 0.85);
      overflow: hidden;
      display: none;
    }

    .mobile-nav-active {
      overflow: hidden;
    }

    .mobile-nav-active .mobile-nav {
      left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
      color: white;
    }

container {
    float: left;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: white;
    overflow: hidden;
}

article {
    float: center;
    padding: 10px;
    margin: auto;
    width: 80%;
    background-color: white;
    color: black;
    overflow: hidden;
}

section:after {
    content: "";
    display: table;
    clear: both;
    overflow: hidden;
}

footer {
    background-color: #00a9d4;
    padding: 10px;
    text-align: center;
    color: #000;
}

/* Text Settings */
h2 {
    color: #00a9d4;
}

h4 {
    color: #00a9d4;
}

h1 {
    font-family: PaintCans, sans-serif;
    text-align: center;
    color: #00a9d4;
    text-shadow: 10px 2px black;
    font-size: 100px;
}

/* Image Centering */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: inherit;
}

/* Portfolio Layout */
    .row {
        margin: 8px -16px;
    }

    /* Add padding BETWEEN each column */
    .row,
    .row > .column {
      padding: 8px;
    }

    /* Create four equal columns that floats next to each other */
    .column {
      float: left;
      width: 25%;
    }

    /* Clear floats after rows */ 
    .row:after {
      content: "";
      display: table;
      clear: both;
    }

    /* Content */
    .content {
      background-color: #e6e6e6;
      padding: 10px;
      border-radius: 15px;
    }

/* Responsive Layout Stuff */
    /* Responsive layout - makes a two column-layout instead of four columns */
    @media screen and (max-width: 900px) {
      .column {
        width: 50%;
      }
    }

    /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 600px) {
      .column {
        width: 100%;
      }
    }

    @media (max-width: 991px) {
      #header {
        height: 60px;
        padding: 10px 0;
      }

      #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
      }

    @media (max-width: 767px) {
      #intro .intro-info {
        width: 100%;
      }

      #intro .intro-info h2 {
        font-size: 34px;
        margin-bottom: 30px;
      }

      .section-header p {
        width: 100%;
      }

    @media (max-width: 574px) {
      #intro {
        padding: 100px 0 20px 0;
      }
    }
        
    @media (min-width: 48em) {
  #header {
    float: left;
  }
  #header li a {
    padding: 20px 30px;
  }
  #main-nav {
    clear: none;
    float: right;
    max-height: none;
  }
  #main-nav {
    display: none;
  }
}

/* Carousel Details */
.carousel .item {
  height: auto;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
}