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);
  }
  /* The following is from google for the sticky navbar */
  /* .test {
    width: 25%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    The magic happens here
    position: sticky;
    top: 20px; Sticks 20px from the top of the viewport
    height: fit-content; Only as tall as its content
    }
  .test ul {
    list-style: none;
    padding: 0;
    }

  .test li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    }

  .test li a:hover {
    color: #000;
    font-weight: bold;
    } */

  main{
    height: fit-content;
    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);
  }
  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;
    }
    
  }