* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    width: 90%;
    max-width: 800px;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #333;
}

header p {
    font-size: 1.2em;
    color: #666;
}

section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.link-box {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.link-box:hover {
    background-color: #e0e0e0;
}

.link-box h3 {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 5px;
}

.link-box h3 a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s ease;
}

.link-box h3 a:hover {
    color: #0056b3;
}

.link-box p {
    font-size: 1em;
    color: #555;
}

#prompts ul {
    list-style-type: disc;
    padding-left: 20px;
}

#prompts ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1em;
}

.responsive {
  width: 100%;
  height: auto;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    color: #666;
}
