/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
}
.container {
  background-color: #e3e3e3;
  width: 100%;
  height: 100vh;
}
.content {
    background-image: url("/img/79king.png");
    max-width: 600px;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    margin: 0 auto;
    background-size: 100% 100%;

}
@media only screen and (min-width: 600px) {
  /* body {
    background-color: lightblue;
  } */
}