* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: verdana;
    background-color: black;
    color: #39ff14;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding-top: 2vw;
}


header h1 {
    text-transform: uppercase;
    font-weight: normal;
    color: #39ff14;
    letter-spacing: 1vw;
    line-height: 1.4;
    font-size: 6vw;
    margin: 0;
}

header img {
    width: 18vw;
    border-radius: 50%;
    margin-top: 2vw;
}

main {
    width: 90vw;
    height: 90vw; /* Ensure height matches width to create a circle */
    margin: 5vw auto;
    border-radius: 50%;
    border: 10px double hotpink;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Vertically center content */
    padding: 4vw; /* Add padding inside the circle */
    box-sizing: border-box;
    overflow: hidden;
}
.syne-mono-regular {
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
  
.lumatalk{
    text-align: center;
    padding:20px
}

#indexsec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 80%; 
    padding: 2vw 0; 
}


section p {
    font-size: 1.4vw;
    text-align: center;
    word-wrap: break-word;
    margin: 0;
}

h2 {
    font-size: 2vw;
    margin-bottom: 1vw;
}

/* Scroll navigation */
.scroll-nav {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 8px;
    padding: 1vw; 
    width: 100%;
    justify-content: center; 
    align-items: flex-start; 
    box-sizing: border-box;
    overflow: auto; 
    max-height: 20vw; 
}

.scroll-nav::-webkit-scrollbar {
    width: 0; 
    height: 8px; 
}

.scroll-nav::-webkit-scrollbar-thumb {
    background-color: #39ff14;
    border-radius: 4px;
}

nav {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 8px; 
    justify-content: center; 
}

nav a {
    text-decoration: none;
    background-color: #39ff14;
    color: black;
    font-weight: bold;
    border: 4px groove #222;
    font-size: 1vw;
    padding: 12px 24px;
    flex-shrink: 0; 
}

nav a:hover {
    background-color: #000;
    color: #39ff14;
}

/* Portrait layout for smaller screens */
@media (max-width: 768px) and (orientation: portrait) {
    main {
        width: 95vw;
        height: 95vw; 
        margin: 3vw auto;
        padding: 4vw 3vw;
    }

    section p {
        font-size: 3vw;
        line-height: 1.4;
    }

    h2 {
        font-size: 5vw;
    }
}

/* Adjustments for landscape layout */
@media (max-width: 1024px) and (orientation: landscape) {
    main {
        width: 80vw;
        height: 80vw; /* Maintain circle in landscape */
    }
}

/* Footer styling */
footer {
    text-align: center;
    font-size: 1.2vw;
    color: #39ff14;
    margin-top: 3vw;
}

footer span {
    font-weight: bold;
}
