/* Basic CSS styling */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #dae9e4;
    color: white;
    padding: 1em;
    text-align: center;
    width:100%;
    img {
        width: min(500px, 80vw);
        height:auto;
    }
    
}


main {
    padding: 2em;
    max-width:800px;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin:0 auto;
    p {
        text-align: center
    }
    h1, h2, h3 {
        text-align: center;
    }
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
