body,html, body {
    margin: 0; /* 移除默认边距 */
    padding: 0; /* 移除默认内边距 */
    height: 100%; /* 设置高度为视口的100% */
  }

.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex; /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    overflow: auto; /* 如果内容溢出，显示滚动条 */
    margin: 0; /* 移除默认边距 */
    padding: 0; /* 移除默认内边距 */
    background-image: url(./bg.jpg);
    background-size: 100% 100%; /* 设置背景图像的宽度和高度为100% */
    background-repeat: no-repeat; /* 背景图像不重复 */
    background-position: center center; /* 背景图像居中显示 */
}

.centered-content {
    width: 80%; /* 或者任何你想要的宽度 */
    max-width: 80%; /* 限制最大宽度，防止在大屏幕上过宽 */
    padding: 20px; /* 内边距 */
    box-sizing: border-box; /* 边框和内边距包含在宽度内 */
    /* 其他样式，如背景色、文本样式等 */
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.3); /* 设置背景色为半透明 */
    border-radius: 10px; /* 设置圆角 */

  }

h1 {
    font-size: 5em; /* 设置字体大小 */
    text-shadow: gray 0px 2px 15px; /* 设置阴影 */
}
a{
    color: white;
}