body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f2d16b; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

header, section {
    width: 80%;
    max-width: 800px;
    background: white;
    margin: 15px 0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

header {
    background: white;
    color: black;
}

button {
    background: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

button:hover {
    background: #555;
}