@import url("https://fonts.font.im/css2?family=Comfortaa:wght@700&family=Source+Sans+Pro:wght@900&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
  background-attachment: fixed;
}

/* 默认背景图片 */
body {
  background-image: url('https://cdn.sa.net/2025/06/14/4pV5qYULeAIdiZO.jpg');
}

/* 当屏幕为竖屏时（高度大于宽度）应用此背景 */
/* @media (orientation: portrait) {
  body {
    background-image: url('https://cdn.sa.net/2024/09/09/Hw4ARiEDKjtB89S.jpg');
  }
} */

/* 当屏幕为横屏时（宽度大于高度）应用此背景 */
/* @media (orientation: landscape) {
  body {
    background-image: url('https://cdn.sa.net/2025/05/05/D7RgKXCOheUnzIm.jpg');
  }
} */

.content-wrapper {
  text-align: center;
}
h1 {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 5em;
  letter-spacing: -0.04em;
}

p {
  color: rgb(239, 116, 222);
  font-family: "Comfortaa", cursive;
  font-size: 1.5em;
  margin: 15px 0;
}

.divider {
  color: white;
}

.icon {
  color: white;
  padding: 15px;
  border-radius: 50%;
}

.icon:hover {
  cursor: pointer;
  background-color: rgb(22, 22, 22);
}