h1{
    color: #fff;
    font-size: 50px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    margin: 20px 0 0 0;
    font-family: catregular, arial, sans-serif;
    font-weight: normal;
  }
  .menu{
    padding: 0 0 0 0;
    margin-top: -5px;
    display: flex;
  }
  .menu a {
    white-space: nowrap;
    text-decoration: none;
    color: #5f453b;
    font-weight: bold;
    border: 1px solid #5f453b;
    padding: 15px 20px 5px 20px;
    border-radius: 0 0 5px 5px;
    background: #bac5e5;
    transform: rotate(2deg);
    transition: box-shadow 0.1s;
    float: left;
  }
  .menu a:nth-child(1){
    background-color: #bac5e5;
  }
  .menu a:nth-child(2){
    background-color: #d4cd85;
    transform: rotate(-2deg);
  }
  .menu a:nth-child(3){
    background-color: #a1bca3;
  }
  .menu a:nth-child(4){
    background-color: #d0a8d2;
    transform: rotate(-2deg);
  }
  .menu a:nth-child(5){
    background-color: #da5b2d;
  }

  .menu a:hover {
    box-shadow: 0 0 3px #000;
    color: #5f453b;
  }

  @media screen and (max-width: 660px) {
    .menu{
      flex-wrap: wrap;
      justify-content: center;
    }

    .menu a{
      padding: 10px;
      margin: 10px 5px;
      border-radius: 10px;
    }

    .menu a:nth-child(5){
      display: none;
    }
  }