body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow-y: scroll;
}

.container {
  position: absolute;
  top: 10%;
  background-color: black;
  border: rgb(46, 46, 46) 1px solid;
  /* Match container background to page background */
  padding: 40px;
  /* Increased padding */
  /* border: 1px solid white; */
  box-shadow: 0px 0px 40px rgba(255, 255, 255, 0.2);
  /* Subtle white shadow */
  width: 740px;
  /* Increased width */
  text-align: center;
}

.logo {
  margin-bottom: 0px;
}

.logo img {
  width: 180px;
  /* Larger logo */
}

h1 {
  font-size: 40px;
  /* Larger font size */
  margin-bottom: 20px;
  margin-top: 10px;
}

p {
  font-size: 20px;
  /* Larger font size */
  margin-bottom: 30px;
  /* More space between text and buttons */
  line-height: 1.6;
  color: rgb(204, 204, 204);
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  /* 使按钮在容器变窄时自动换行 */
}

.buttons a {
  text-decoration: none;
  padding: 18px 28px;
  /* Larger buttons */
  border-radius: 5px;
  font-size: 20px;
  /* Larger font size */
  transition: background-color 0.3s;
  flex: 1 1 45%;
  /* 设置按钮宽度为40%，并允许它们换行 */
  margin: 8px;
  /* 增加按钮之间的间距 */
  box-sizing: border-box;
  /* 确保padding和border包含在宽度内 */
}

.enter {
  background-color: rgb(255, 153, 0);
  color: black;
  font-weight: bold;
}

/* .enter:hover {
    background-color: #cc7a00;
} */
.exit {
  background-color: rgb(31, 31, 31);
  color: white;
  font-weight: bold;
}

.exit:hover {
  background-color: #444444;
}

.footer a {
  color: rgb(255, 153, 0);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer a:visited {
  color: rgb(255, 153, 0);
}

.copyright p {
  margin-top: 20px;
  font-size: 13px;
  color: rgb(204, 204, 204);
}

.copyright a {
  color: rgb(255, 153, 0);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.copyright a:visited {
  color: rgb(255, 153, 0);
}

@media (max-width: 768px) {
  .container {
    width: 90%;
    /* 在较小屏幕上调整容器宽度 */
  }

  .buttons a {
    flex: 1 1 100%;
    /* 在较小屏幕上按钮占满整个宽度 */
  }
}
