* {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    box-sizing: border-box;
  }
  
  .bar {
    background-color: black;
  }
  
  
  .sections a.active {
    color: rgb(255, 0, 0);
  }
  
  .spline {
    display: flex;
    justify-self: center;
    margin-top: -50px;
    margin-bottom: 20px;
  }

  .bouncy-button {
    background-color: rgb(255, 0, 0);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2), 
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4);
    margin-top: 50px;
    margin-bottom: 100px;
  }
  
  .bouncy-button:hover {
    background-color: #f55036;
  }
  
  .graphic {
    width: 500px;
    height: 500px;
  }
  
  .dev-project {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    background-color: black;
    color: white;
    padding-top: 60px;
    padding-bottom: 150px;
  }
  
  .dev-project-inverted {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    background-color: rgb(255, 255, 255);
    color: black;
    padding-top: 60px;
    padding-bottom: 150px;
  }
  
  h3 {
    text-align: center;
    font-size: 2rem;
    margin-left: 20px;
    margin-right: 20px;
  }

  h1 {
    margin-top: 200px;
    color: black;
    font-size: 3.8rem;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    text-align: center;
    margin-bottom: 40px;
  }
  
  p {
    justify-self: center;
    text-align: center;
    font-size: 1.1rem;
    width: 40%;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  .dev-project video {
    width: 50%;
  }
  
  .dev-project-inverted video {
    width: 50%;
  }
  
  .dev-project .button {
    box-shadow: 0 1em 1em rgba(255, 0, 0, 0.4);
  }

  .dev-project .button:hover {
    box-shadow: 0 1em 1em rgba(238, 255, 0, 0.4);
  }
  
  .dev-project-inverted .button:hover {
    background-color: rgb(0, 191, 255);
    box-shadow: 0 1em 1em rgba(0, 157, 255, 0.4);
  }
  
  .dev-project-inverted .button {
    background-color: rgb(17, 255, 0);
    box-shadow: 0 1em 1em rgba(0, 255, 4, 0.4);
  }
  
  .button {
    padding: 10px;
    border-radius: 8px;
    background-color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 16px;
    border: none;
    box-shadow: 0 1em 1em rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    color: black;
    margin-top: 15px;
  }
  
  .button:hover {
    background-color: rgb(255, 208, 0);
  }
  
  img {
    width: 50%;
  }
  
  footer {
    opacity: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 255, 0), rgb(255, 0, 0));
  }
  
  @media (max-width: 1000px) {
    .dev-project video {
      width: 70%;
    }
  
    .dev-project-inverted video {
      width: 70%;
    }
  
    img {
      width: 70%;
    }
  
    p {
      width: 70%;
    }
  }
  
  @media (max-width: 750px) {
    h3 {
      font-size: 1.5rem;
    }
  
    .graphic {
      width: 400px;
      height: 400px;
    }
  
    .spline {
      margin-top: 70px;
      margin-bottom: 0px;
    }
  
    .bouncy-button {
      margin-top: 100px;
      margin-bottom: 150px;
    }
  
    @media (max-width: 500px) {
      .graphic {
        width: 300px;
        height: 300px;
      }
  
      .dev-project {
        height: 1000px;
      }
  
      .dev-project-inverted {
        height: 1000px;
      }

      h1 {
        margin-top: 100px;
      }
    }

  }
  