body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #e0f7fa; /* Light blue background */
    color: #333;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #00796b; /* Darker teal */
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
}

.fish-display {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #b2dfdb; /* Light teal border */
    border-radius: 10px;
    background-color: #e0f2f7; /* Very light blue */
}

.fish-display h2 {
    color: #004d40; /* Even darker teal */
    margin-top: 0;
    font-size: 1.8em;
}

.fish-display img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fish-display p {
    font-style: italic;
    color: #555;
}

button {
    background-color: #009688; /* Teal button */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #00796b; /* Darker teal on hover */
}

