#button-container {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

#content {
    text-align: center;
    margin-top: 20px;
}

img {
    max-width: 100%;
    height: 600px;
	object-fit: contain;  /* Makes the image scale to fit the size, might add borders */
    display: block;  /* Remove extra space below the image */
    margin: 0 auto;  /* Center align if not full width */
}

#className {
    font-size: 28px; /* Larger font size for class name */
    font-weight: bold; /* Bold text for emphasis */
    margin-top: 10px; /* Space above the class name */
}

#displayText {
    font-size: 24px; /* Larger font size for readability */
    margin-top: 10px; /* Space between the class name and text */
    color: #333; /* Dark grey color for text */
}

button {
    font-size: 18px;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
