body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0; 
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center; 
    min-height: 100vh;
}
.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #666;
}

.links {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* This will stack the buttons vertically */
    justify-content: center;
    gap: 10px; /* This will add 10px of space between the buttons */
}

.link-button {
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.link-button:hover {
    background-color: #2980b9;
}

.data-display {
    text-align: left;
    border-top: 2px solid #ecf0f1;
    padding-top: 20px;
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #ecf0f1;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
}

li strong {
    color: #2c3e50;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Add these new styles to your existing styles.css file */

.image-gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.image-card {
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.image-card p {
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}