body {
    font-family: 'Arial', sans-serif;
    background-color: #FFDEAD; /* A light beige background */
    color: #704214; /* Chocolate color for text */
    text-align: center;
    margin: 40px;
}

header {
    background-color: #F4A460; /* Sandy brown background for the header */
    padding: 20px;
    border-radius: 8px;
}

button {
    background-color: #FFE4C4; /* A biscuit color for buttons */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #DEB887; /* Darken the button when hovering */
}
