body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f4f6f9;
    color: #333;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 6em;
    margin-top: 0.5rem;

    .logo {

        margin-top:0.2em;
        a {
            display: flex;
            align-items: center;
            color: #095c9b;
            text-decoration: none;
            font-size: 1.5rem;
            gap: 1em;
            margin: 0.5em;
        }

        img {
            width: 120px;
        }
    }

    .header-links {
        display: flex;
        align-items: center;
        gap: 2em;
        margin-right: 1em;
        margin-top:0.5em;

        img {
            width: 40px;
            height: 40px;
        }
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 95%;
    margin: 0 auto;
    flex-grow: 1;
}

footer {
    text-align: center;
    bottom: 0;
    width: 100%;
    display: block;
}

.error {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}
