/* Reset some default styles */
body, h1, h2, p {
    margin: 0px;
    padding: 0px;
}

/* Set a fun and quirky background */
body {
    background-color: #FED766; /* Yellow */
    font-family: 'Comic Sans MS', 'Comic Sans', 'Comic Neue', sans-serif;
}

/* Center the content */
.container {
    padding: 20px 0px 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container h1, .container h2 {
    padding: 10px;
}

/* Style the heading */
h1 {
    font-size: 3rem;
    color: #FF3D00; /* Red-Orange */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Style the subheading */
h2 {
    font-size: 2rem;
    margin-top: 10px;
    color: #33B5E5; /* Sky Blue */
}

/* Style the button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #FF3D00; /* Red-Orange */
    color: white;
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline */
}

.cta-button:hover {
    background-color: #FF5722; /* Darker Red-Orange on hover */
}

/* Style the Google Sheets UI image */
.google-sheets-ui {
    margin-top: 30px;
    max-width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

/* Add a hover effect to scale the image slightly */
.google-sheets-ui:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Style the page sections */
.page-section {
    padding: 40px 20px;
}


#details {
    background-color: #ffffff; /* White background */
}


#creation {
    background-color: #f4f4f4; /* Light gray background */
}

#usage {
    background-color: #FFD700; /* Gold background */
}


/* Style section headings */
.page-section h2 {
    font-size: 2rem;
    color: #333; /* Dark gray */
    margin-bottom: 20px;
}

/* Style section text */
.page-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666; /* Medium gray */
}

/* Style the list in the details section */
#details ul {
    list-style-type: disc;
    margin-left: 20px;
}

#details li {
    margin-bottom: 10px;
    color: #666; /* Medium gray */
}

#creation .llm {
    font-size: 1em;
    padding: 5px;
    font-style: italic;
}

#creation .why {
    max-width: 70%;
    font-size: 0.9em;
    padding: 10px;
}


#usage ol {
    text-align: left;
}
