body {
    background-color: #f7f3e9;
    font-family: 'Lato', sans-serif;
    color: #4a4a4a;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #2980b9;
}

.container {
    width: 80%;
    margin: auto;
}

.header {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9em;
}

.button {
    background-color: #e74c3c;
    color: #ecf0f1;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #c0392b;
}

svg {
    fill: #f1c40f;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease-in-out;
}

svg:hover {
    fill: #f39c12;
}