body{
    background: rgb(221, 135, 96);
    display: flex;
   flex-direction: column;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   line-height: 1.6;
  
}

a {
    text-decoration: none;
    color: black;
  }

#back-button-div{
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

#back-to-game-button{
    z-index: 3;
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(to top right, rgb(119, 81, 32), rgb(235, 94, 29));
    border-radius: 16px;
    border: unset;
    font-weight: bold;
    color: black;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease
}

#back-to-game-button:hover{
    background: linear-gradient(to top right, rgb(139, 101, 52), rgb(255, 114, 49));
    transform:  scale(1.10);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

#link-to-legal-notice{
    text-decoration: underline;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align:center;
  }


  @media (min-width: 1500px) {
    .container {
      max-width: 1200px;
    }

   body{
    font-size: 1.2rem;
   }
  }
  

  @media (min-width: 2500px) {
    .container {
      max-width: 1200px;
    }

   body{
    font-size: 1.6rem;
   }
  }
  