html,
body {
  margin: 0;
  padding: 0;
}


.text {
  font-family: "Montserrat", sans-serif;
  color: #3d3b3b;
}

h1 {
  font-family: "Montserrat", sans-serif;
  color: #3d3b3b;
  padding-top: 2.5%;
  padding-bottom: 1%;
}

h2 {
  font-family: "Montserrat", sans-serif;
}

.project-link {
  font-family: "Montserrat", sans-serif;
  color: #3d3b3b;

  display: block;
  font-size: 1.3em;
  margin-top: 0.83em;
  margin-bottom: 0.4em;

  font-weight: bold;
  
}
.project-link:hover {
  color: #1c72b8;
}

.about-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.h1-middle {
  display: flex;
  justify-content: center;
}
.divider {
  display: flex;
  width: 60%;
  height: 1px;
  background-color: #ccc;
  margin-top: 5%;
  margin-left: 10%;
  margin-bottom: 2.5%;

}
.footer-container {
  display: flex;
  align-items: center;
  background: #24252a;
  width: 100%;
  height: 10vh;
}
.footer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 2vh;
  color: #edf0f1;
}
.footer-logo {
  padding-left: 17.5vh;
  padding-right: 5%;
}

.textbox {
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-left: 10%;
}
a:hover {
  color:#0088a9;
}
.contact-lbl {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.project-date {
  display: flex;
  justify-content: end;
  text-decoration: none;
  color:#0088a9
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 10%;
    background-color: #24252a;
  }
  
  .logo {
    cursor: pointer;
    padding-right: 32.5%;
  }
  
  .nav__links a,
  .cta,
  .overlay__content a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #edf0f1;
    text-decoration: none;
    
  }

  
  .nav__links {
    list-style: none;
    display: flex;
  }
  
  .nav__links li {
    padding: 0px 20px;
  }
  
  .nav__links li a {
    transition: color 0.3s ease 0s;
  }
  
  .nav__links li a:hover {
    color: #0088a9;
  }
  
  .cta {
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease 0s;
  }
  
  .cta:hover {
    background-color: rgba(0, 136, 169, 0.8);
  }
  .animated-progress {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    margin: 20px 10px;
    border: 1px solid rgb(189, 113, 113);
    overflow: hidden;
    position: relative;
  }
  
  .animated-progress span {
    height: 100%;
    display: block;
    width: 0;
    color: rgb(255, 251, 251);
    line-height: 30px;
    position: absolute;
    text-align: end;
    padding-right: 5px;
  }
  
  .progress-python span {
    text-align: center;
    background-color: #3572A5;
    width: 100%;
  }
  .progress-html span {
    text-align: center;
    background-color: #E34C26;
    width: 66.66%;
  }
  .progress-css span {
    text-align: center;
    background-color: #1572B6;
    width: 66.66%;
  }
  .progress-js span {
    text-align: center;
    background-color: #ceb70a;
    width: 66.66%;
  }
  .progress-php span {
    text-align: center;
    background-color: #6F9FD8;
    width: 66.66%;
  }
  .progress-java span {
    text-align: center;
    background-color: #ED8B00;
    width: 66.66%;
  }
  .image {
    padding: 2.5%;
    margin-left: 25%;
  }
  .code-preview-container {
    display: flex;
    padding-left: 20%;
    padding-top: 2%;
  }
  
  .li-space {
    padding-bottom: 1%;
  }

  .input {
    padding: 5px;
  font-size: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: var(--accent);
  border-radius: calc(var(--border-radius) * 1px);
  text-align: center;
  outline: transparent;
  width: 10%;
  transition: border-color calc(var(--transition, 0.2) * 1s) ease;
  }

  .original-button {
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 4%;
    font-size: 16px;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    :hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

  }
  
  .original-button:hover {
    opacity: .7;
  }

  /* Mobile Nav */
  
  .menu {
    display: none;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: width 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 100%;
  }
  
  .overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: color 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: #0088a9;
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {
      font-size: 20px;
    }
    .overlay .close {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
  
  @media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
      display: none;
    }
    .menu {
      display: initial;
    }
  }
  