
.wrapper-containerss {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .wrapper {
    width: 300px;
    height: auto;
    margin: 20px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    text-align: center;
  }
  
  .banner-image img {
    background-position: center;
    background-size: cover;
    height: 300px;
    width: 300px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255, 0.255);
  }
  
  h1 {
    font-family: 'Righteous', sans-serif;
    color: rgba(5, 4, 4, 0.98);
    text-transform: uppercase;
    font-size: 1.8rem;
  }
  
  /* p {
    color: #fff;
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 0.8rem;
    line-height: 150%;
    letter-spacing: 2px;
    text-transform: uppercase;
  } */
  
  .button-wrapper {
    margin-top: 18px;
  }
  
  .btn {
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 0.8rem;  
    letter-spacing: 2px;  
    cursor: pointer;
  }
  
  .btn + .btn {
    margin-left: 10px;
  }
  
  .outline {
    background: transparent;
    color: rgba(0, 212, 255, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.6);
    transition: all .3s ease;
    font-size: .8em;

  }
  
  /* .outline:hover{
    transform: scale(1.125);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transition: all .3s ease;  
  }*/
  
  .fill {
    background: red;
    color: rgba(255,255,255,0.95);
    filter: drop-shadow(0);
    font-weight: bold;
    transition: all .3s ease; 
    font-size: .8em;
  }
  
  /* .fill:hover{
    transform: scale(1.125);  
    border-color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 10px 5px rgba(0,0,0,0.125));
    transition: all .3s ease;    
  } */