body {
    font-family: Garamond, serif;
    background-color: #F5F5DD;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #F4DDB1;
    padding: 10px 0;
    text-align: center;
}

.header img {
    height: 50px;
}

.test {
    text-align: right;
    padding: 10px 20px;
}

.test li {
    list-style-type: none;
}

.test a {
    text-decoration: none;
    color: #333;
    background-color: #D6C7B4;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.test a:hover {
    background-color: #b89c8e;
}

h1 {
    text-align: center;
    color: #D6C7B4;
}

p {
    text-align: center;
    font-size: 1.2em;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    background-color: #D6C7B4;
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #b89c8e;
}
