body {
    background-color: rgb(255, 255, 255);
    --color: rgb(100, 100, 100);
    color: var(--color);
    padding: 2%;
}

ul {
    list-style-type: square;
    list-style-position: outside;
    padding: 1vw;
}

ol {
    list-style-type: square;
    list-style-position: outside;
}

.background {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 1cm;
    background: url('data:image/svg+xml;utf8,\
        <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 4 4">\
        <circle cx="1" cy="1" r="1" fill="rgb(200, 200, 200)"/></svg>');
    background-size: 4px 4px;
    background-color: rgb(255, 255, 255);
    border: 0.05cm solid var(--color);
    overflow: hidden;
    white-space: nowrap;
}

h1 {
    font-family: Garamond, serif;
    font-size: 300%;
    letter-spacing: -0.05cm;
    text-align: left;
}

h3 {
    font-family: Garamond, serif;
    font-size: 200%;
    letter-spacing: -0.05cm;
    text-align: left;
    margin-top: 0.7cm;
    margin-bottom: 0.1cm;
}

h2 {
    font-family: Garamond, serif;
    font-size: 200%;
    letter-spacing: -0.05cm;
    text-align: left;
    margin: 0;
}

h2 a {
    color: inherit;
}

.intro_text {
    font-family: Georgia, serif;
    font-size: 150%;
    text-align: left;
    margin-top: 20px;
    width: 90vw;
}

#year {
    font-family: "Arial Black", Gadget, sans-serif;
    font-weight: 900;
}

.ticker {
    position: absolute;
    display: inline-block;
    overflow: all;
    animation-name: scrollAnimation;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-play-state: running;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker a {
    color: inherit;
    text-decoration: inherit;
}

.green_ticker {
    --color: rgb(58, 146, 26);
}

.red_ticker {
    --color: rgb(161, 44, 44);
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(35%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.led {
    font-family: "Arial Black", Gadget, sans-serif;
    font-weight: 900;
    font-size: 200%;
    letter-spacing: -0.01cm;
    word-spacing: 0.25cm;
    filter: brightness(150%);
    color: var(--color);
}

.playPauseButton {
    position: absolute;
    width: 1cm;
    height: 1cm;
    border: 0.05cm solid var(--color);
}

.playIcon {
    fill: var(--color);
}

.pauseIcon {
    fill: var(--color);
}

#bottom {
    font-size: 0.1 cm;
    align-items: center;
    margin:0 auto;
    width: 50vw;
}

#bottom a {
    color: inherit;
    text-decoration: inherit;
}

.mailto-link {
    position: relative;
    padding: 8px 0;
}

.mailto-message {
    top: 1px;
    left: 50%;
    margin-bottom: -5px;
    transform: translate(-50%, -100%);
    position: absolute;
    display: none;
    width: auto;
    white-space: nowrap;
    font-size: 12px;
    background-color: black;
    color: white;
    padding: 2px 6px;
    border-radius: 2px;

    &:after,
    &:before {
        content: '';
    }

    &:before {
        top: 100%;
        left: 50%;
        border: solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(0, 0, 0, 0);
        border-top-color: #000000;
        border-width: 4px;
        margin-left: -4px;
    }
}

.mailto-link:hover .mailto-message,
.mailto-link:focus .mailto-message,
.mailto-link:focus-within .mailto-message {
    display: block;
}

.separator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgb(100, 100, 100);
    margin: 0 5px; /* Adjust spacing as needed */
}