/* General styles for both pages */
body {
    background-color: black;
    color: #00FFFF;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    min-height: 100vh; /* Ensure it fills the height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Ensure content stacks vertically */
}

h1 {
    color: #009AFF;
    font-size: 48px;
}

.container p {
    font-size: 16px;
    color: #009AFF;
}

/* Stars background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black url('https://web.archive.org/web/20040603184108im_/http://www.qsc.cc/starsback.gif');
    z-index: -1;
}

/* Content styles */
.content {
    text-align: center;
    width: 100%; /* Take up full width */
    max-width: 1200px; /* Limit the maximum width */
    margin: 0 auto; /* Center the content */
}

/* Soundboard button container */
.soundboard {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap */
    justify-content: center; /* Center the buttons */
    gap: 10px; /* Space between buttons */
    padding: 10px; /* Add some padding */
}

/* Soundboard button styles */
.soundboard button {
    background-color: #009AFF;
    color: white;
    padding: 15px 20px;
    font-size: 16px; /* Slightly reduce the font size for better fit */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 150px; /* Fixed width for each button */
    box-sizing: border-box; /* Ensure padding and border are included in width */
    transition: background-color 0.3s ease;
    flex: 1 1 calc(33% - 20px); /* Ensure the buttons take up 3 per row */
}

/* Hover effect for buttons */
.soundboard button:hover {
    background-color: #007ACC;
}

.Larry {
    width: 75%; /* Reduces the image size to 75% of its original size */
    height: auto; /* Maintain aspect ratio */
    max-width: 200px; /* You can adjust this if needed for further control */
    margin-bottom: 20px; /* Space between image and heading */
}

/* Add spinning animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 0.5s linear infinite; /* Spins every 0.5s infinitely */
}
