@media (max-width: 480px) {
    html {
      font-family: "Luckiest Guy";
    }
    body {
      font-family: "Luckiest Guy";
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100vh;
      background-image: url("Images/background/Movil.png");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      overflow-x: hidden;
    }
  
    h1 {
      font-family: "Luckiest Guy";
      flex-grow: 1;
      text-align: center;
      font-size: 86px; 
      margin: 0;
      font-weight: bold;
      color: white;
      text-shadow: 3px 3px 1px #000;
      text-align: center;
      -webkit-text-stroke: 1px black;
    }
  
    .botones {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 100px;
    }
  
    .boton {
      font-family: "Luckiest Guy";
      width: 80%; 
      padding: 15px;
      margin: 8px 0;
      color: black;
      background-color: #ffea00;
      border-radius: 15px;
      box-shadow: 3px 3px 1px #000;
      cursor: pointer;
      font-weight: bold;
      border: 4px solid black;
      font-size: 1.5em; 
      transition: transform 0.2s ease;
    }
    .boton:hover {
      transform: scale(1.1);
      background-color: #ffd500;
    }
  
    .boton.small {
      width: 70%;
      border-radius: 10px;
      padding: 10px;
      font-size: 1.2em;
    }
    #btnClearPlayers {
      background-color: #ff4d4d;
      color: white;
      border: 3px solid black;
      padding: 10px;
      font-family: "Luckiest Guy";
      cursor: pointer;
      box-shadow: 3px 3px 1px #000;
    }
  
    #btnClearPlayers:hover {
      background-color: #e60000;
    }
  
    .boton.large {
      font-size: 2em;
    }
  
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
    }
  
    .modal-content {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      width: 80%;
      max-width: 300px;
      text-align: center;
    }
  
    .close {
      position: absolute;
      top: 70px;
      right: 20px;
      font-size: 1.5em;
      cursor: pointer;
    }
  
    #playerList {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 0;
      margin: 20px 0;
    }
  
    #playerList .column {
      flex: 1;
      list-style-type: none;
      padding: 0;
    }
    #playerList .column li {
      font-size: 5vw;
      margin-bottom: 10px;
    }
  
    #playerList .column.left {
      margin-left: 25px;
      text-align: left;
    }
  
    #playerList .column.right {
      text-align: left;
    }
    footer {
      position: fixed;
      width: 100%;
      bottom: 0;
      font-family: "Luckiest Guy";
    }
    .description{
      width: 10%;
      margin-left: 30px;
    }
    .description img{
      width: 110px;
      height: 110px;
      transition: transform 0.2s ease;
    }
    .description img:hover{
      transform: scale(1.1);
    }
    .info-title{
      color: black;
      margin: auto;
      text-align: center;
      font-size: 50px;
      font-weight: bold;
      color: white;
      text-shadow: 3px 3px 1px #000;
      text-align: center;
      -webkit-text-stroke: 1px black;
    }
  }
  