body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header, footer {
    background-color: #333;
    padding: 1em 0;
    text-align: center;
}

header a, footer a {
    color: white;
    text-decoration: none;
    margin: 0 1em;
    font-size: 1.2em;
}



header a:hover, footer a:hover {
    text-decoration: underline;
}



footer p {
    color: white;
    margin: 0.5em 0 0;
    font-size: 0.9em;
}

.main-content {
    flex: 1;
    text-align: center;
    padding: 2em;
}

.main-content h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.main-content h2 {
    font-size: 1.8em;
    margin-bottom: 1.5em;
}

.role-buttons {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-bottom: 2em; /* Add margin bottom to separate buttons from the footer */
}

.role-button {
    padding: 1em 2em;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.role-button:hover {
    background-color: #555;
}

.styled-paragraph {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 10px auto;
}

