.jumbotron {
    padding-top: 6rem;
    background-color: #e2edff;
  }
  
  #projects {
    background-color: #e2edff;
  }
  
  section {
    padding-top: 5rem;
  }
  
  /* My Keyboard Section */
  .keyboard-box {
    position: relative;
    background-color: #0c6efd;
    border-radius: 10px;
    height: 500px;
    transform-style: preserve-3d;
  }
  
  .keyboard-box::before {
    content: 'Our';
    position: absolute;
    color: #fff;
    font-size: 3em;
    font-weight: bold;
    font-style: italic;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: 0.5s;
  }
  
  .keyboard-box:hover::before {
    opacity: 0.2;
  }
  
  .keyboard-box::after {
    content: 'Collection';
    position: absolute;
    color: #fff;
    font-size: 4em;
    font-weight: bold;
    font-style: italic;
    top: 350px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: 0.5s;
  }
  
  .keyboard-box:hover::after {
    opacity: 0.2;
  }
  
  .keyboard-name {
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 2em;
    opacity: 0;
    transform: translate3d(0, 0, 50px);
    transition: 0.5s;
  }
  
  .keyboard-box:hover .keyboard-name {
    top: 20px;
    opacity: 1;
  }
  
  .keyboard-detail-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 100px);
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
  }
  
  .keyboard-box:hover .keyboard-detail-button {
    opacity: 1;
    bottom: 20px;
  }
  
  .keyboard-img {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate3d(-50%, -52%, 80px);
    max-width: 350px;
    transition: 0.5s;
    z-index: 2;
  }
  
  .keyboard-box:hover .keyboard-img {
    transform: translate3d(-50%, -52%, 100px) rotate(5deg) scale(1.2);
  }
  .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .logo a {
    color: #fff;
  }
  
  .logo img {
    max-height: 40px;
  }