.legal-notice-screen {
    width: 700px;
    /* height: 560px; */
    border-radius: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    background-color: rgba(66, 66, 64, 0.932);
    border: 3px solid;
    padding-right: 30px;
  }

  .legal-notice-headline-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%; 
    padding: 0 20px; 
  }

.legal-notice-headline-container h1 {
  font-size: 24px;
  font-family: "rye", Arial, Helvetica, sans-serif;
  margin-left: 20px;
  color: rgb(203, 175, 17);
}

.btn-close-legal-notice {
  width: 40px;
  height: 30px;
  font-size: 16px;
  background-color: darkred;
  border-radius: 20px;
  font-family: "rye", Arial, Helvetica, sans-serif;
  color: white;
  cursor: pointer;
  border: unset;
  border: 2px solid;
}

.btn-close-legal-notice:hover  {
    background-color: rgb(170, 70, 70);
    color: black;
  }

  .legal-notice-content {
    text-align: left;
    max-width: 650px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
    overflow-y: auto;
    max-height: 400px;
    padding: 20px;
  }

  .highlight-gamename {
    color: red;
    font-family: "rye", Arial, Helvetica, sans-serif;
  }

  .highlight-words-legal {
    color: rgb(203, 175, 17);
    font-size: 16px;
  }