/* 引入Roboto字体 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #F4E1CF;
    /* 浅米色 */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

h1 {
    text-align: center;
    color: #BF714D;
    /* 白茶 */
    padding: 20px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 95vw;
    position: fixed;
    top: 0;
    z-index: 1000;
}

h2 {
    color: #b68168;
}

p {
    color: #b69c68;
}

div.empty {
    margin-top: 100px;
}

img {
    margin-top: 100px;
    width: 89vw;
    height: auto;
    border-radius: 5px;
}

.content {
    width: 89vw;
}

pre {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
    margin: 8px auto;
}

code {
    font-family: 'Roboto Mono', monospace;
    color: #6D462C;
}