/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
} */

body {
    margin: 0;
    padding: 0;
    background-color: black; /* Change the background color as needed */
    overflow: hidden;
    font-family: monospace;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the canvas container behind other content */
}

/* .scroll-container {
    max-height: 80vh; 
    overflow-y: auto; 
} */
.scroll-container {
    max-width: 800px; /* Set the maximum width to 1000 pixels */
    margin: 0 auto; /* Center the container horizontally */
    max-height: 80vh; /* Adjust the maximum height as needed */
    overflow-y: auto; /* Enable vertical scrollbar when content exceeds container height */
}

.scroll-container::-webkit-scrollbar {
    width: 0; /* Set the width of the scrollbar to 0 */
    background: transparent; /* Set the background color of the scrollbar to transparent */
}

header, nav {
    padding: 20px;
    padding-bottom: 5px;
}
footer{
    padding: 5px;
    padding-bottom:5px;
}
section {
    padding: 20px;
    padding-top: 5px; /* Reduce top padding */
    padding-bottom: 100px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}
nav {
    text-align: center; /* Center-align the content within the nav element */
}

nav ul {
    display: inline-block; /* Display the ul element as an inline block */
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

p{
    color: green;
}

a {
    text-decoration: none;
    /* color: #333; */
    color:green;
}

a:hover {
    /* color: #666; */
    color:green;
}

h1{
    color: green;
}

h2{
    color: green;
}
h3 {
    color: green;
}
h1, h2 {
    text-align: center;
}

.artwork {
    margin-bottom: 40px;
}

.artwork img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

.artwork p {
    margin-top: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}



/* bubblebubbsss */
