/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.aside {
      font-family: "EB Garamond", serif;
    line-height: 1.3;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}


p, span, div {
    font-family: "EB Garamond", serif;
    line-height: 1.5;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

body {
    color: black;
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.spheroid {
    width: 75px;
    height: auto;
    margin-bottom: 5px;
}

.centered-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    min-height: 200px;
    border: 1px solid black;
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    margin-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.map-container {
    position: relative;
    border: 1px solid black;
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    margin-top: 5px;
}
.centered-container h1 {
    margin-top: 0;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 2px;
    z-index: 1;
}

.nav-button {
    padding: 5px 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

/* New styles for selected state */
.nav-button.selected {
    background-color: #000;
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-button.selected::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.nav-button:hover {
    background-color: #555;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.text-content {
    padding: 10px;
    line-height: 1.6;
}

.scroll-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 10px 0;
    display: flex;
}

.scroll-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.scroll-text {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
