body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #dadada;
    position: relative;
    overflow: hidden;
}

.smoke-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap; /* stack on small screens */
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #616161;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

p {
    font-size: 1.3rem;
    max-width: 500px;
    text-align: center;
}

.fixedHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.headerLogo {
    height: 70px;
    float: left;
    margin-left: 10px;
}

.headerImage {
    height: 70px;
    float: right;
    margin-right: 10px;
    border: 1px solid #000;
    border-radius: 10px;
}

footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(68, 36, 141, 0.801);
    text-align: center;
}

footer h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.site-map {
    list-style: none;
    padding: 0;
}

.site-map li {
    display: inline-block;
    margin: 0 0.5rem;
}

.site-map a {
    color: rgba(51, 9, 80, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
}

.site-map a:hover {
    text-decoration: underline;
    color: rgba(148, 39, 226, 0.671);
    /* slightly brighter on hover */
}