html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #CCDDFF;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}

.main-navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    border: thin dotted #00F1FF;
    text-align: center;
    background-color: #6589d1;
    padding: 0.5rem;
}

.nav-checkbox {
    display: none;
}

.nav-toggle-button {
    display: none;
    border: thin solid #598086;
    border-radius: 5px;
    background-color: #2e2a2a;
    color: #8a58d4;
    text-shadow: 2px 2px 3px rgb(216, 191, 47);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.navi-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .navi-li {
    border: thin solid #000000;
    border-radius: 5px;
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
    padding-left: 2px;
    padding-right: 2px;
}

.main-navigation .navi-li:hover {
    background-color: #c3f5bc;
}

.main-navigation .navi-li .navi-anchor {
    display: block;
    text-decoration: none;
    color: #c9b3eb;
    text-shadow: 3px 3px 4px rgb(0, 0, 0);
    padding: 0.25rem 0.5rem;
}

.main-navigation .navi-li .navi-anchor:hover {
    text-decoration: none;
    color: #15294d;
    text-shadow: 4px 4px 4px rgb(0, 0, 0);
}

/* Mobile navigation */
@media (max-width: 768px) {
    .main-navigation {
        text-align: left;
    }

    .nav-toggle-button {
        display: inline-block;
        margin-bottom: 0;
    }

    .navi-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        background-color: #6589d1;
        border-top: thin solid #000000;
        padding: 0.5rem;
        z-index: 1001;
    }

    .nav-checkbox:checked + .nav-toggle-button + .navi-list {
        display: block;
    }

    .main-navigation .navi-li {
        display: block;
        margin: 0 0 0.5rem 0;
        padding: 0;
    }

    .main-navigation .navi-li:last-child {
        margin-bottom: 0;
    }

    .main-navigation .navi-li .navi-anchor {
        display: block;
        padding: 0.75rem 1rem;
    }
}

.content {
    border: 2px solid #444477;
    background-color: #a09cd1;
    text-align: center;
    font-weight: bold;
    min-height: calc(100vh - 40px);
}

.font-1,
.font-2 {
    font-family: "UnifrakturMaguntia", cursive;
    font-size: 2rem;
    font-weight: 400;
    font-style: normal;
}

.font-1 {
    text-shadow: 2px 2px 5px rgb(0, 250, 0);
}

.font-2 {
    text-shadow: -2px -2px 5px rgb(0, 250, 0);
}

h1:hover .font-1 {
    text-shadow: -2px -2px 5px rgb(0, 250, 0);
}

h1:hover .font-2 {
    text-shadow: 2px 2px 5px rgb(0, 250, 0);
}

.my-info {
    border: thin dashed #000000;
    margin: auto;
}

.myinfo-cat {
    text-decoration: underline;
    border-right: thin solid #007700;
    padding: 5px;
    text-align: right;
}

.myinfo-data {
    font-weight: normal;
    padding: 5px;
    text-align: left;
}

footer {
    text-align: center;
    margin-top: 10px;
    background-color: #5555BB;
    position: sticky;
    bottom: 0;
    height: 40px;
}