body {
    font-family: Arial, sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    height: 100vh; /* Full height */
    background-color: #f8f8f8;
}

.container {
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header, section {
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center text */
}

header {
    background: none;
    padding-bottom: 5px;
    padding-top: 0px;
    /*margin-top: 0px; /* Add margin to create space from the top */
    border: none; /* Ensure there’s no border */
    box-shadow: none;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/ /* Optional shadow for depth */
}

footer {
    padding-top: 10px;
    line-height: 0.5;
    text-align: center;
}

section {
    padding: 30px;
    background: #fff;
}