body {
    margin: 0;
    background-color: #ffd6ff;
    color: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}
.container {
    width: 70%;
    height: auto;
    background-color: #ff96ff;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    display: inline-block;
}
img {
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}
img + img {
    margin-top: 20px;
}
p {
    white-space: normal;
    word-break: normal;
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 100%;
}
a.next {
    display: inline-block;
    margin-top: 30px;
    font-size: 2rem;
    color: #ff96ff;
    text-decoration: none;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    transition: background 0.2s;
}
a.next:hover {
    background-color: #ddd;
}
ul {
    text-align: left;
    margin-top: 10px;
    padding-left: 20px; /* space for bullets */
}
.home-btn {
    position: fixed;   /* stays in the corner even when scrolling */
    top: 20px;
    left: 30px;
    display: inline-block;
    transition: filter 0.2s;
    z-index: 1000;     /* ensures it’s above other content */
    padding: 10px 20px;
    border-radius: 12px;
}
.home-btn img {
    width: 70px;
    height: auto;
}
.home-btn:hover {
    background-color: #333;
}
.container p {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}
.tit h1 {
    font-size: 3em;
}
iframe {
    width: 600px;
    height: 450px;
    max-width: 100%;
}
.song audio {
  background-color: white;
  display: inline-block;
  border-radius: 30px;
  height: 40px;
  width: 60%;
}
