html{
    border-spacing: border-box;
    font-size: 16px;
  }
  *{
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
      font-family: 'Raleway', sans-serif;
  }
  body{
      background-image: url(/img/bg-img.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
      background-attachment: fixed;
      /* background-position: center; */
      /* height: 4000px; */
      overflow-x: hidden;
  }
  #navbar{
      display: flex;
      justify-content: space-between;
      /* align-items: flex-start; */
      height: 10rem;
      width: 100%;
      /* margin: 0 auto; */
    }
  .logo-container {
      width: 21rem;
      height: 18rem;
  }
  .nav-list {
      display: flex;
      justify-content: space-around;
      margin-top: -3rem;
      height: 70px;
      width: 50%;
      /* max-width: 600px; */
      font-weight: 600;
  }
    
  .nav-list li {
      width: calc(100% / 3);
      border-radius: 10px;
      display: flex;
      align-items: center;
  }
    
  .nav-item {
      font-size: 1.5em;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.7s ease;
      color: rgb(255, 255, 255);
      text-decoration: none;
      border-color: rgba(0, 0, 0, 0.075);
      border-width: 0rem;
      /* border-radius: 1rem; */
      transition: transform .5s ease-in-out, color .5s ease-out, border-width .6s ease-in-out, border-color .4s ease-in-out, background-color .5s ease-in, box-shadow .4s ease-in-out;
  }
  .nav-item:hover {
    box-shadow: 0rem 0rem .6rem .1rem white;
    border-width: 3rem;
    border-color: rgb(0, 0, 0);
    background-color: rgba(0, 124, 240, 0.719);
    color: white;
    transform: scale(1.2,1.2);
  }
  section{
    height: fit-content;
  }
  /* section .row{
    display: flex;
    justify-content:center;
  } */
  /* section .row .col{
    padding: 0px 0px;
  } */
  section .card-1, section .card-2, section .card-3, section .card-4, section .card a{
    color: white;
    transition: transform .3s ease-in-out, color .4s ease-in;
  }
  section .card-1 a, section .card-2 a, section .card-3 a, section .card-4 a{
    box-shadow: 0rem 0rem 1rem .25rem rgba(255, 255, 255, 0.726);
  }
  section .card:hover, section .card-1 a:hover, section .card-2 a:hover, section .card-3 a:hover, section .card-4 a:hover{
      transform: scale(1.05,1.05);
      color: rgb(255, 255, 255);
  }
  .projecttabs{
    height: auto;
    margin: 0px 0px;
    display: flex;
    justify-content: space-evenly;
    
  }
  .projecttabs .card{
    background: rgba(252, 144, 247, 0.493);
    box-shadow: 0rem 0rem 1rem .5rem rgba(253, 253, 253, 0.685);
    text-align:center;
  }
  .projecttabs .btn{
    background-color: rgba(0, 124, 240, 0.842);
  }
  section{
    font-size: 2rem;
    background: rgba(252, 144, 247, 0.493);
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    padding: 5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0rem 0rem .5rem .5rem rgba(128, 128, 128, 0.425);
  }
  section input, section textarea, section button{
    /* display: flex;
    justify-content: center; */
    /* padding: 1rem 2rem; */
    margin: 1rem 1rem;
    border-radius: .75rem;
    box-shadow: 0rem 0rem 1rem .5rem rgba(128, 128, 128, 0.548);
    /* width: fit-content; */
  }
  
  section button{
    background-color: rgba(0, 124, 240, 0.842);
    font-size: 1.5rem;
    /* border-radius: 5rem; */
    width: 30%;
    height: 4rem;
  }
  footer div{
    height: 3rem;
    display: flex;
    justify-content: space-around;
  }
  footer div a{
    width: 2rem;
    color: white;
  }
  @media screen and (max-width: 400px), (min-width: 400px){
    html{
      font-size: 4px;
    }
    .jumbotron{
      margin-top: -20rem;
    }
  }
  @media screen and (min-width: 550px) {
    html{
      font-size: 6px;
    }
    .jumbotron{
      margin-top: -15rem;
    }
  }
  @media screen and (min-width: 500px) {
    html{
      font-size: 7px;
    }
    .jumbotron{
      margin-top: -14rem;
    }
  }
  @media screen and (min-width: 850px) {
    html{
      font-size: 10px;
    }
    /* .nav-item:hover {
      border-width: 3rem;
      border-color: rgb(0, 0, 0);
      background-color: rgba(0, 59, 254, 0.555);
      color: black;
      transform: scale(1.2,1.2);
    } */
  }
  @media screen and (min-width: 1100px) {
    html{
      font-size: 14px;
    }
    section{
      display: flex;
      justify-content: space-around;
      width: 60%;
      margin-left: 20%;
    }
    .jumbotron{
      margin-top: -12rem;
    }
    
  }
  @media screen and (min-width: 2000px) {
    html{
      font-size: 14px;
    }
    section{
      display: flex;
      justify-content: space-around;
      width: 60%;
      margin-left: 20%;
    }
    .jumbotron{
      margin-top: -12rem;
    }
    
  }