/* CSS ELEMENT COUPE */
  
  .coupe-leaderboard {
    max-width: 50rem;
    margin: 1rem auto;
    font-family: sans-serif;
  }
  
  .coupe-header {
    background: rgb(60,165,204);
    background: linear-gradient(117deg, rgba(60,165,204,1) 0%, rgba(171,0,255,1) 100%);
    color: white;
    text-transform: uppercase;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    height: 8rem;
    position: relative;
    z-index: 1;
  }
  
  .coupe-header h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    position: absolute;
    padding: 0 2rem;
    top: 2rem;
    font-family: "CaustenRound Black";
  }
  
  .coupe-header h2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    position: absolute;
    padding: 0 2rem;
    top: 5rem;
    font-family: "CaustenRound Medium";
  }
  
  .coupe-header img {
      height: 22rem;
      position: absolute;
      bottom: -5em;
      right: 0rem;
  }

  @media screen and (max-width: 650px) {
    .coupe-header img {
      display: none;
    }
  }
  
  @media screen and (max-width: 900px) {
   
    .coupe-header h1 {
      line-height: 1.5rem;
      font-size: calc(23px + 2vw);
    }
     .coupe-headerh2 {
      font-size: calc(5px + 2vw);
    }
  
  }

  .coupe-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }

  .coupe-button {
    background: rgb(41, 41, 41);
    color: white;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    line-height: 1.2rem;
    margin: 1rem 0.5rem;
    cursor: pointer;
    border-radius: 15px;
    font-family: "CaustenRound Regular";
    transition: all .5s ease-in-out;
  }
  
  .coupe-button:hover {
    transition: all .5s ease-in-out;
    background-color: rgb(61, 61, 61);
  }
  
  .coupe-table {
    background-color: #191919;
    color: #999;
    width: 100%;
    border-collapse: collapse;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  
  .coupe-table thead {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
  }
  
  .coupe-table tbody .nick {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .coupe-table tbody tr:nth-child(2n) {
    background-color: #252525;
  }
  
  .coupe-table .nick {
    text-align: left;
  }
  
  .coupe-table .rank,
  .coupe-table .sp,
  .coupe-table .kd {
    text-align: right;
  }
  
  .coupe-table .rank {
    width: 4ch;
    padding-left: 1rem;
  }
  
  .coupe-table .kd {
    width: 8ch;
  }
  
  .coupe-table .sp {
    width: 25ch;
  }
  
  .coupe-table th {
    padding: 1.5rem 1rem 0.5rem;
  }
  
  .coupe-table td {
    padding: 1rem 1rem;
  }
  
  