body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0052FF; /* Blue background */
    color: white;
    font-family: 'Chewy', cursive; /* Applying Chewy font */
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container img {
    max-width: 80%; /* Reduced width for better visibility */
    height: auto; /* Maintains aspect ratio */
    max-height: 50vh; /* Reduced height for better layout */
    margin: 20px 0; /* Added space around the image */
}

.top-text, .bottom-text {
    font-size: 1.5em; /* Larger text for readability */
    color: #FFFFFF; /* White color text */
}

.bottom-text a {
    color: #FFD700; /* Gold color for the link */
    text-decoration: none; /* No underline */
}

.bottom-text a:hover {
    text-decoration: underline; /* Underline on hover */
}
