body {
    margin: 20;
    font-family: Arial, sans-serif;
    background: url('https://api.imyqf.cn/imgapi') no-repeat center center fixed;
    background-size: cover;
    color: black;
}

header {
    background-color: #ff6347c7;
    text-align: center;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
    color: rgb(255, 255, 255);
}

header .flag {
    width: 100px;
    height: auto;
    margin-left: 20px;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

main {
    background-color: rgba(253, 249, 249, 0.671);
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

#quotes {
    text-align: center;
}

#quote {
    font-size: 1.5em;
    font-weight: bold;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background-color: #ff6347;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff4500;
}

footer {
    background-color: #333;
    text-align: center;
    padding: 10px 0;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}