@media only screen and (max-width: 768px) {
    .options-list {
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
      height: auto;
    }
    
    .option {
      margin: 10px;
      width: calc(50% - 20px);
    }
    
    .option a {
      height: 120px;
      line-height: 120px;
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .option {
      width: calc(100% - 20px);
    }
    
    .option a {
      height: 100px;
      line-height: 100px;
      font-size: 14px;
    }
  }
  
  .text-center {
    text-align: center;
  }
  .options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .option {
    margin: 10px 20px;
    flex: 1 1 200px;
    max-width: 200px;
  }
  
  .option a {
    display: block;
    padding: 10px;
    width: 100%;
    height: 150px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 25px;
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }
  
  .option a:hover {
    background-color: #151111;
    transform: scale(1.1);
    color: #f8f8f8;
  }
  