@import url("../index.html.css");
/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.5) url('path-to-your-background.gif') no-repeat center center fixed; /* Replace with your gif path */
    background-size: cover;
}

body {
    display: flex;
    flex-direction: column;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999; /* Ensure it's on top */
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.transparent-header {
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value (fourth parameter) to change transparency */
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 100%;
}

nav ul li {
    flex: 1;
    text-align: center;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.mayt-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-text {
    font-size: 5rem;
    color: white; /* Change text color to white */
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 11rem 0 2rem; /* Adjust padding to maintain spacing */
}

.button-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    width: 80%;
    margin-bottom: 2rem;
}

.placeholder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.placeholder {
    background-color: transparent; /* Make boxes invisible */
    border: none;
    padding: 1rem;
    margin: 1.5rem;
    width: 100px;
    text-align: center;
    color: black; /* Change text color to black */
}

.audio-button {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.audio-button:hover {
    opacity: 0.9;
}

.cyan-button {
    background-color: cyan;
}

.yellow-button {
    background-color: yellow;
}

.magenta-button {
    background-color: magenta;
}

.black-button {
    background-color: black;
    color: #fff;
}

.cyan-button2 {
    background-color:aquamarine;
}

.yellow-button2 {
    background-color: #E1FF00;
}

.magenta-button2 {
    background-color: maroon;
}

.black-button2 {
    background-color:#5F5F5F;
    color: #fff;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
text-emphasis-style: circle;
	font: 100; 
}

footer p {
    margin: 0;
}

.scroll-placeholder {
    height: 100vh; /* Adjust height to create scrollable content */
}
