

.cards {
    display: flex;
    padding: 25px 0px;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  
  .card {
    display: flex;
    flex-direction: column;
  
  }
  
  .card:not(:last-child) {
    margin-right: 10px;
  }
  
  .card:hover {
    color: var(--white);
    background: var(--red);
  }
  
  .card .card-title {
    font-size: 20px;
  }
  
  .card .card-content {
    margin: 20px 0;
    max-width: 85%;
  }
  
  .card .card-link-wrapper {
    margin-top: auto;
  }
  
  .card .card-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--red);
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  
  .card:hover .card-link {
    background: var(--darkred);
  }
  
  .cards::-webkit-scrollbar {
    height: 12px;
  }
  
  .cards::-webkit-scrollbar-thumb,
  .cards::-webkit-scrollbar-track {
    border-radius: 92px;
  }
  
  .cards::-webkit-scrollbar-thumb {
    background: var(--darkred);
  }
  
  .cards::-webkit-scrollbar-track {
    background: var(--thumb);
  }
  
  @media (min-width: 500px) {
    .card {
    }
  
    .card:not(:last-child) {
  
      }
  }
  
  @media (min-width: 700px) {
    .card {
    }
  
    .card:not(:last-child) {
  
  }
  }
  
  @media (min-width: 1100px) {
    .card {
    }
  
    .card:not(:last-child) {
  
  }
  }
  
  
  /* FOOTER STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-footer {
    position: fixed;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
  }
  
  .page-footer a {
    display: flex;
    margin-left: 4px;
  }
  
  
  .game-area {
  
      width: 100%;
      height: 100%;
      margin-left: auto;
      margin-right: auto;
  
  }
  
  
 

  .buttonicon {
    max-height: 50px;
    max-width: 40px;
  }
  
  
  
  .playedcards-section {
      width: 360px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      margin-top: 30px; ;
      height: 300px;
  }
  
  .bottomcard {
    -webkit-transform:rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  
    position: absolute; 
    top: 0; 
    left: 80px;
  }
  
  
  .middlecard {
    -webkit-transform:rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  
    position: absolute; 
    top: 0; 
    left: 80px;
  }
  
  .topcard{
      position: absolute; 
        top: 0; 
        left: 80px;
        
  }
  
  
  
  .players-section{
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 30px;
      height: 50px;
  }
  
  .pick-and-play-button {
      display: inline;
      float: left;
  }
  
  .game-players {
      height: 50px;
    line-height: 50px;
    font-size: 1.5em; 
  }
  
  .game-cutter {
      display: inline;
      float: right;
      height: 50px;
    line-height: 50px;
    font-size: 3em; 
  }
  
  
  .players-cards{
      width: 100%;
  }
  