* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent scrolling */
}

#canvas1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(7, 0, 3);
}

.Container-for-intro-and-buttons {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2vw; /* Smaller padding */
    text-align: center;
    max-width: 100vw;
    height: 100vh; /* Fill the entire screen */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    overflow: hidden;
}

.intro-container {
    position: relative;
    z-index: 2;
    width: 90%; /* Limit width */
    margin: 0 auto;
}

.intro {
    margin-top: 0;
}

h1 {
    font-size: 6vw; /* Smaller font size */
    max-width: 100%;
    word-wrap: break-word;
    margin-bottom: 2vh; /* Space between elements */
}

p {
    font-size: 2vw; /* Smaller font size */
    max-width: 100%;
    margin: 0 auto;
}

.intro-text-only {
    z-index: 3;
    color: rgb(255, 223, 246);
    margin-bottom: 3vh;
}

.bio-text-only {
    z-index: 3;
    color: rgb(189, 155, 175) !important;
    margin-bottom: 3vh;
}

button {
    padding: 1vw; /* Smaller padding */
    color: rgb(255, 156, 222);
    background-color: rgba(176, 11, 105, 0.3);
    font-size: 2.5vw; /* Smaller font size */
    border-radius: 1.5vw; /* Smaller border radius */
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    max-width: 80%; /* Limit width */
    margin: 1vh auto; /* Center buttons */
}

button:hover {
    background-color: rgba(255, 223, 246, 0.2);
}

.check-me-out-only {
    opacity: 0;
}

.buttons {
    width: 100%;
    text-align: center;
}

.menu-container {
    position: fixed;
    top: 2vh; /* Adjusted to vh for better scaling */
    left: 2vh; /* Adjusted to vh for better scaling */
    z-index: 10000000;
}

.More-menu-only {
    z-index: 100;
    opacity: 0;
    text-align: center;
    width: fit-content;
    height: auto;
    margin: 10px;
}

.developer-only {
    color: #B00B69;
}

#more-buttons-container {
    position: absolute;
    top: calc(6vh + 50px);
    left: 1vh;
    display: flex;
    flex-direction: column;
    gap: 0.1vh; /* Smaller gap */
    opacity: 0;
    visibility: hidden;
    width: 22vw; /* Smaller width */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

#more-buttons-container.visible {
    opacity: 1;
    visibility: visible;
}

.extra-button {
    padding: 1vw; /* Smaller padding */
    cursor: pointer;
    width: 100%;
    background-color: rgba(176, 11, 105, 0.3);
    border-radius: 1vw; /* Smaller border radius */
    color: rgb(255, 156, 222);
    font-size: 2vw; /* Smaller font size */
    transition: background-color 0.3s ease;
}

.extra-button:hover {
    background-color: rgba(255, 223, 246, 0.2);
}

