*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #ffb3d7;
  }
  
  #playing-cards{
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   margin-top: 100px;
  }
  
  .card{
    background-color: #fff;
    height: 350px;
    min-width: 250px;
    max-width: 250px;
    display: flex;
    justify-content: space-between;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); 
    padding: 5px;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
  }
  
  .left{
    align-self: flex-start;
  }
  
  .middle{
    align-self: center;
    flex-direction: column;
    font-size: 80px;
    align-items: center;
  }
  
  .right{
    align-self: flex-end;
  }
  
  .logoyt{
    width: 100px;
    height: 100px;
    border-radius: 5px;
  }
  
  .flip{
    transform: rotate(180deg);
  }
  
  .middle-section{
      display: flex;
      justify-content: center;
  }
  
  .red{
    color: red;
  }
  
  .pink{
    color: #DB7093;
  }
  
  .green{
    color: #bfff80;
  }
  
  .suscrib{
    font-size: 20px;
    color: red;
  }
  