* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, sans-serif;
    line-height: 1.6;
    color: #4345a7;
    background-color: #fffff2;
    margin: 100px;
}

header {
    background-color: #2c3e50;
    color: white;
    font-weight: 100;
    text-align: center;
    padding: 1rem;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background-color: white;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    font-weight: 400;
}

/*a:visited { text-decoration: none; color:red; }*/
/*a:hover { text-decoration: none; color:blue; }*/
/*a:focus { text-decoration: none; color:yellow; }*/
/*a:hover, a:active { text-decoration: none; color:black }*/

button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

#message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    background-color: #ecf0f1;
    display: none;
}

footer {
    text-align: center;
    padding: 1rem;
    /*background-color: #34495e;*/
    /*color: white;*/
    margin-top: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fffff2; /* Match body background color */
    /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */*/
    z-index: 100; /* Ensure footer stays on top */
}
