*, body, div, span, a, li, option, i, strong {
  font-size:18pt;
}

h1 {
    font-size:30pt;
}

h2 {
    font-size:22pt;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #f8f8f8;
    padding: 20px;
    position: fixed; /* Changed from relative to fixed */
    width: 100%; /* To ensure it spans the entire width */
    top: 0; /* Align to the top */
    z-index: 1000; /* High z-index to keep it above other content */
    text-align: left;
}

#logo {
    margin-left: 20px;
    width: 50px; /* Adjust as needed */
}

nav {
    position: absolute;
    top: 20px;
    right: 80px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
nav a:hover {
    color:red;
}

main {
    margin: 20px;
    text-align: left;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 140px;
    padding-bottom: 200px;
}

footer {
    background-color: #000000;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.8em;
    text-align: left;
    padding: 20px;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 10px;
}

footer a:hover {
    color: red;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* Textmarker */
/* -------------------------------------------------------------------------------------------------------------- */

.realistic-marker-highlight {
    position: relative;
    display: inline;
}

.realistic-marker-highlight:before {
    content: "";
    width: 100%;
    height: 1em;
    position: absolute;
    z-index: -1;
    filter: url(#marker-shape);
    left: -0.25em;
    top: 0.1em;
    padding: 0 0.25em;
}

.realistic-marker-purple:before {
    background-color: #ff6db7;
}

.realistic-marker-silver:before {
    background-color: #c0c0c0;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* Cols */
/* -------------------------------------------------------------------------------------------------------------- */

.row {
    display: block;
}

@media (min-width: 1000px) {
    .row {
        display: flex;
    }
    .col {
        margin-right: 20px; /* Adjust or remove as needed */
    }
    .col:last-child {
        margin-right: 0; /* Removes margin for the last column */
    }
    .col-50 {
        width: 50%;
    }
}
