/* General Styles */
:root {
    --background-color: #000;
    --title-box-color: #151519;
    --box-color: #2b2a33;
    --linkit-font-color: #9ef3ff;
    --linkit-font-color-transparent: rgba(158, 243, 255, 0.3);
    --standard-font-color: #FFF;
    --font-family-text: "Quicksand", sans-serif;
    --font-family-headings: "Unica One", sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--linkit-font-color);
    font-family: var(--font-family-text);
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
}

.toplinks {
    position: fixed;
    background-color: var(--background-color);
    z-index: 10;
    transition: opacity 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center; /* Center the child div horizontally */
}

.innertoplinks {
    padding: 0.5em 1.2em;
}

.toplinkshidden {
    opacity: 0;
    pointer-events: none;
}

/* Header Section */
.header-section {
    text-align: center;
    padding: 1.2em 0;
}

.title {
    color: var(--linkit-font-color);
    font-size: 2.8em;
    margin-bottom: 0;
}

.subheading {
    color: var(--linkit-font-color);
    font-size: 1.5em;
}

.linkbox {
    float: left;
    margin: 0px 5px;
}

.intro-links a:link, a:visited, a:active, a:hover {
    font-size: 1.4em;
    color: var(--linkit-font-color);
    font-family: var(--font-family-headings);
    text-decoration: none;
}

.text {
    color: var(--standard-font-color);
    font-size: 1.0em;
}

.headertext {
    color: var(--standard-font-color);
    font-size: 1.2em;
    font-weight: bold;
}

/* Container and Boxes */
.box {
    background-color: var(--box-color);
    padding: 1.2em;
    border-radius: 10px;
    margin-bottom: 20px;
}

.intro-section {
    background-color: var(--title-box-color);
    max-width: 750px;
}

.content-section {
    margin-top: 5rem;
}

.content-section .box {
    box-shadow: 0 0 20px var(--linkit-font-color-transparent);
}

.content-section a:link, a:visited, a:active, a:hover {
    font-size: 1em;
    color: var(--linkit-font-color);
    font-family: var(--font-family-text);
}

.subcontent-section {
    background-color: var(--title-box-color);
}

.photo {
    width: 100%;
    border-radius: 50%;
}

h1 {
    font-family: "Unica One", sans-serif;
}

h2 {
    font-family: "Unica One", sans-serif;
    margin-bottom: 1em;
}

h3 {
    font-family: "Unica One", sans-serif;
    font-size: 3.2rem;
}

/* Footer */
.footer-section {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-section a:link, a:visited, a:active, a:hover {
    color: var(--linkit-font-color);
    font-family: var(--font-family-text);
    text-decoration: none;
}

/* Bigger than 550 */
@media (min-width: 550px) {
    .title {
        font-size: 2.8em;
    }

    .subheading {
        font-size: 1.6em;
    }

    .text {
        font-size: 1.0em;
    }

    .headertext {
        font-size: 1.2em;
    }

    .header-section {
        padding: 1.2em 0;
    }

    .box {
        padding: 1.2em;
    }
  }

/* Bigger than 750 */
@media (min-width: 750px) {
    .title {
        font-size: 3em;
    }

    .subheading {
        font-size: 1.8em;
    }

    .text {
        font-size: 1.2em;
    }

    .headertext {
        font-size: 1.4em;
    }

    .header-section {
        padding: 1.5em 0;
    }

    .box {
        padding: 1.5em;
    }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
    .title {
        font-size: 3.5em;
    }

    .subheading {
        font-size: 2.3em;
    }

    .text {
        font-size: 1.3em;
    }

    .headertext {
        font-size: 1.6em;
    }

    .header-section {
        padding: 2em 0;
    }

    .box {
        padding: 2em;
    }
}