/* Universal Setting */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Bebas Neue";
}

/* Body */
body {
    background-color: black;
}

/* Header */
header {
    background-color: black;
    padding: 30px;
    text-align: center;
}

/* Navigation */
.navbar {
    background-color: #01d63f;
    overflow: auto;
  }
  
  .navbar a {
    float: left;
    display: block;
    padding: 14px 16px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    width: 25%;
    text-align: center;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    background-color: #000;
    color: white;
  }

  .navbar .icon {
    display: none;
  }

  @media screen and (max-width: 600px) {
    .navbar a:not(:first-child) {display: none;}
    .navbar a.icon {
      float: right;
      display: block;
    }
  }

  @media screen and (max-width: 600px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

/* Home Section Text & Images */
body, html {
    height: 100%;
}

.section-content {
    display: flex;
    position: relative;
    float: none;
}

section {
    display: -webkit-flex;
    display: flex;
}

.container {
    width: 50%;
    height: auto;
    float: none;
    margin: 30px auto;
    display: flex;
    position: relative;
}

.text {
    white-space: nowrap;
    color: white;
    font-size: xxx-large;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    opacity: 100%;
}

.overlay-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #01d63f;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container:hover .overlay-1 {
    width: 100%;
    opacity: .8;
}

.overlay-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f86ae;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container:hover .overlay-2 {
    width: 100%;
    opacity: .8;
}

.overlay-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #a61b1b;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container:hover .overlay-3 {
    width: 100%;
    opacity: .8;
}

.overlay-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #d6cb41;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container:hover .overlay-4 {
    width: 100%;
    opacity: .8;
}

/* Portfolio */
body {
    background-color: black;
    padding: 20px;
    font-family: Arial;
  }
  
  /* Center website */
  .main {
    max-width: 1000px;
    margin: auto;
  }
  
  h1 {
    font-size: 50px;
    word-break: break-all;
  }
  
  .row {
    margin: 8px -16px;
  }
  
  /* Add padding BETWEEN each column (if you want) */
  .row,
  .row > .column {
    padding: 8px;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    display: none; /* Hide columns by default */
  }
  
  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    background-color: white;
    padding: 10px;
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  /* Add a grey background color on mouse-over */
  .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background color to the active button */
  .btn.active {
    background-color: #01d63f;
     color: white;
  }

/* Footer */
footer {
    background-color: #01d63f;
    padding: 10px 10px;
    text-align: center;
}

/*Menu Footer */
.menu-footer ul {
    list-style-type: none;
    margin: 0;
    padding: 4px;
    overflow: hidden;
}

.menu-footer li {
    float: none;
}

.menu-footer li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        font-weight: normal; 
        font-size:large; 
        font-style: normal;
        text-decoration: none;
        transition: 0.3s;
}

.menu-footer li a:hover {
    background-color: #000;
}

/* Contact Page */
.container-contact {
    width: 50%;
    height: auto;
    float: none;
    margin: 30px auto;
    display: flex; 
    position: relative;
}

.contact {
    color: white;
    font-size: 2em;
    text-align: center;
    margin: auto;
    align-content: center;
    border: 12px solid black;
    background-color: black;
    border-radius: 12px;
    padding: 4%;
    line-height: 1.8;
}

.contact-link {
  /* Unvisted Link */
    color: #01d63f;
    text-decoration: none;
}
/* About Page */
.container-about {
    display:-moz-inline-box; 
    position: relative;
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.about {
    color: white;
    font-size: 2em;
    text-align: center;
    margin: auto;
    align-content: center;
    border: 12px solid black;
    background-color: black;
    border-radius: 12px;
    padding: 4%;
    line-height: 1.8;
}