/* styles.css */

body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text */
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease; /* Added transition for smooth color changes */
}

.container {
    text-align: center;
}

#centralImage {
    width: 300px;
    height: 300px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover;
    transition: transform 0.3s ease;
}

#centralImage:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

#credit {
    margin-top: 20px;
    font-size: 1.2em;
    color: #ffffff; /* Changed to pure white for better contrast */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Added text shadow for enhanced legibility */
}

@media (max-width: 600px) {
    #centralImage {
        width: 200px;
        height: 200px;
    }

    #credit {
        font-size: 1em;
    }
}
