/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    color: #000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #FF0000;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
}

p {
    margin-bottom: 20px;
    font-size: 1em;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.top-bar {
    width: 100%;
    height: 60px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: red;
    cursor: pointer;
}

.user-actions {
    display: flex;
    align-items: center;
    color: red;
}

.user-actions button {
    margin-left: 15px;
    padding: 8px 16px;
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.user-actions .logout {
    background-color: transparent;
    color: #FF0000;
    cursor: pointer;
    text-decoration: underline;
    border: none;
    font-weight: bold;
}

.user-actions .logout:hover {
    color: #cc0000;
}

.container {
    padding: 90px 50px 50px 50px;
    max-width: 800px;
    background-color: #fff;
}

.footer {
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
}

.footer a {
    margin: 0 15px;
    color: #333;
    text-decoration: none;
    display: inline-block;
}

.footer a:hover {
    text-decoration: underline;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #cc0000;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-item {
    flex: 1;
    margin: 10px;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }
}

ul {
    list-style-position: inside;
}