body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFF0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #212121;
  flex-wrap: wrap;
  font-size: 20px;
}

.logo img {
  max-width: 100px;
;
}





nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
}

nav li {
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: background-color 0.3s;
  border-radius: 25px;
}

nav a:hover {
  background-color: #555;
  border-radius: 25px;
}

.language {
  display: flex;
  align-items: center;
}

.language img {
  max-width: 20px;
  margin-right: 5px;
}

.authentication button {
  margin: 0 5px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 25px;
  font-size: 18px;
  background-color: #555;
  color: white;
}

.authentication button:hover {
  background-color: #777;
}
img {
  width: 100%;
}
h1 {
  text-align: center;
  font-size: 32px;
  color: black;
}
.content {
  color: #000000;
  margin: 20px;
}

.content p {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 16px;
}

.content ol,
.content ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style-position: inside;
}

.content h2 {
  margin: 20px 0 10px 0;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid white;
}

.content h3 {
  margin: 15px 0 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.content table {
  width: 70%;
  margin: 20px auto;
  border-collapse: collapse;
}

.content table th,
.content table td {
  padding: 10px;
  border: 1px solid white;
  text-align: center;
  transition: background-color 0.3s;
}

.content table th:hover,
.content table td:hover {
  background-color: rgba(128, 128, 128, 0.5);
}

.tablebet {
  overflow-x: scroll;
}
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    text-align: center;
    margin-bottom: 10px;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  nav li {
    margin: 5px;
  }

  .language,
  .authentication {
    text-align: center;
    margin: 10px 0;
  }
}
.brand-table-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.brand-table {
  border-collapse: collapse;
  width: 60%;
}

.brand-table td {
  border: 3px solid #ddd;
  padding: 8px;
  text-align: center;
}

.brand-logo {
  max-width: 50px;
}

.brand-info {
  text-align: left;
}

.brand-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.brand-button:hover {
  background-color: #45a049;
}
@media (max-width: 768px) {
  .brand-table {
    width: 90%;
  }
}
img {
  max-width: 100%;
}