* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    outline: 0px solid #33333300;
}

a,
a:link,
a:visited {
    cursor: pointer;
    text-decoration: none;
    color: var(--color-primary);
}

a:hover,
a:link:hover,
a:visited:hover {
    color: var(--color-primary);
    text-shadow: none;
}

hr {
    border: none;
    border-top: 1px dotted rgba(0, 0, 0, 0.15);
    margin: 2em auto;
    width: 100%;
}

#messageContainer {
    position: fixed;
    min-height: 3em;
    top: 0em;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2000;
    pointer-events: none;
}

#messageBox {
    opacity: 0;
    margin: 0 auto;
    font-size: 1em;
    font-family: "REGU";
    padding: 0.5em 2em;
    border-radius: 0.8em;
    color: rgb(255, 255, 255);
    background-color: #16a34a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#megamenu a:link,
#megamenu a:visited {
    cursor: pointer;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6) !important;
}

#megamenu a:hover {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: none;
}

body {
    margin: 0;
    padding: 0em;
    font-size: 1em;
    font-family: "REGU", sans-serif;
    background-color: var(--color-page-background);
    overflow-x: hidden;
}

content {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
}

.page-content {
    z-index: 2;
    padding: 0em;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: var(--page-width);
    color: rgba(0, 0, 0, 0.8);
    padding-top: var(--header-height);
    margin-bottom: var(--footer-height);
}

#blob1 {
    position: fixed;
    top: -5%;
    left: -15%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 216, 63, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

#blob2 {
    position: fixed;
    bottom: -10%;
    right: -15%;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 216, 63, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.spacer-1em { height: 1em; }
.spacer-2em { height: 2em; }
.spacer-3em { height: 3em; }
.spacer-4em { height: 4em; }

/* Sections */
section {
    width: 100%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 10em;
}

section h1,
section h2,
section h3,
section h4,
section h5 {
    color: inherit;
}
