body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(to left, #eb6568, #fabb56, #f6eb66, #9fc650, #8bccf1, #a089bf);
    padding: 10px 10px;
    text-align: center;
}

header img {
    max-width: 300px;
    height: auto;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.container.wide {
    max-width: 90%;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.inline {
    display: inline;
}

.blackLink {
    color: #333;
    text-decoration: underline;
}

.blackLink:hover {
    color: black;
}

.whiteLink {
    color: white;
}

.whiteLink:hover {
    color: #555;
}

.redLink {
    color: red;
}

.redLink:hover {
    color: #cc0505;
}

.greenLink {
    color: green;
}

.greenLink:hover {
    color: #39b856;
}

.noUnderline {
    text-decoration: none;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    color: #555;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #E1306C;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
}

.button:hover {
    background: #C8235D;
}

table {
    margin: 0 auto;
    font-size: 1.2em;
}

nav {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    font-weight: bold;
}

.navList {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navList li {
    margin: 0 0.1em;
}

.navList a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 10px 10px;
}

.navList a.active {
    background-color: #555;
    border-radius: 5px;
}

.navList a:hover {
    background-color: #555;
    border-radius: 5px;
}

.burgermenu {
    display: none;
    background: none;
    border: none;
    font-size: 1em;
    color: white;
    cursor: pointer;
}

.navbarContent {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

@media (max-width: 800px) {
    nav {
        justify-content: left;
        position: relative;
        z-index: 3000;
    }

    .navList {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        width: 200px;
        border-radius: 0 0 10px 10px;
        margin-top: 10px;
    }

    .navList a {
        margin-left: 1.6em;
        line-height: 2.5em;
        padding: 10px 10px;
    }

    .burgermenu {
        display: block;
        margin-left: 0.8em;
    }

    .navList.active {
        display: flex;
    }
}

.heading {
    text-align: center;
}

footer {
    text-align: center;
    font-size: 0.9em;
    margin-top: 20px;
    padding: 10px;
    background: #333;
    color: white;
}

.footerLink {
    color: white;
}

.footerLink:hover {
    color: #ccc;
}


.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding: 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.entry {
    padding: 0 0 1rem 0;
    position: relative;
    width: 50%;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.entry.left {
    left: 0;
}

.entry.right {
    left: 50%;
}

.circle {
    position: absolute;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.circle:hover {
    background-color: #555;
    transform: scale(1.2) rotate(-5deg);
}

.right .circle:hover {
    transform: scale(1.2) rotate(5deg);
}


.entry.left .circle {
    right: -15px;
}

.entry.right .circle {
    left: -15px;
}

.entry.right .content {
    text-align: right;
}

.content {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .entry {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .entry.right::before,
    .entry.left::before {
        left: calc(50% - 10px);
    }
}

.entry:nth-of-type(1) {
    animation-delay: 0.2s;
}

.entry:nth-of-type(2) {
    animation-delay: 0.4s;
}

.entry:nth-of-type(3) {
    animation-delay: 0.6s;
}

.entry:nth-of-type(4) {
    animation-delay: 0.8s;
}

.width-100 {
    width: 100%;
}

.max-width-100 {
    max-width: 100%;
}

.justification {
    text-align: justify;
}
