* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BiMoStyle', serif;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://bing.img.run/rand_uhd.php') no-repeat center center fixed;    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.75); /* Translucent background */
    border-radius: 20px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    transition: transform 0.5s ease;
}

.container:hover {
    transform: translateY(-10px);
}

.quote-box {
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-style: italic;
    color: #444;
}

.quote-author {
    font-family: 'SongStyle', serif; /* Explicitly set the font-family */
    font-size: 1.4rem;
    font-weight: bold;
    color: #555;
}

@font-face {
  font-family: 'SongStyle';
  src: url('AaSongLiuKaiTi-2.ttf') format('truetype');
}

@font-face {
  font-family: 'BiMoStyle';
  src: url('BiMoChunQiu-ChaoQingKaiShu-2.ttf) format('truetype');
}

@media (max-width: 600px) {
    .container {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .quote-author {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem"];
        font-size: 0.9rem;
    }
}