html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f60404;
  text-align: center;
}

.text-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1; 
  font-size: 18px;
  background-color: black;
  font-family: Arial, sans-serif;
  white-space: pre-wrap;
  line-height: 1.4;
  overflow-wrap: break-word;
  padding: 20px;
  pointer-events: none;
  user-select: none;
}


/* 《 BACKGROUND 》 */

h1 {
  margin-top: 10px;
  font-size: 60px;
}

h2 {
    margin-top: 25px;
}

p {
  margin: 0 auto;
  font-size: 20px;
  max-width: 300px;
}


.divider {
  width: 450px;
  height: 1px;
  background-color: #f60404;
  margin: auto;
}

#main-box {
  position: relative;
  background-color: black;
  border: 2px solid #f60404;
  width: 500px;
  height: 830px;
  z-index: 1;
  padding: 20px;  
  padding-bottom: 30px;
  box-sizing: border-box;
}

#main-box h1, 
#main-box h2, 
#main-box p {
  margin: 10px 0;
}

#main-box p {
  max-width: 90%;   
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
}

ul {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 20px;
  list-style: none;
  text-align: left;
}
.banner-row {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 16px;              
  margin-top: 20px;
}

.banner-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #f60404;
}

::-webkit-scrollbar {
    width: 4px;
    height: 10px;
    background: black;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #f60404;
    border-radius: 10px;
    border: 1px solid #f60404;
}

::-webkit-scrollbar-track {
    border: 1px solid #f60404;
    border-radius: 10px;
}