/* Set the background color */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #8C8C8C;
}

/* Container holding the image */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 120px); /* Adjusted to accommodate text */
}

/* The image itself */
.center-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* New dynamic text styling */
.dynamic-text {
    font-family: 'Luminari', 'Chiller', 'Creepster', fantasy; /* Placeholder for a similar gothic style font */
    color: black;
    font-size: calc(2vw + 10px); /* Responsive font size based on viewport width */
    text-align: center;
    padding: 10px;
}

/* Social links styling */
.social-links {
    text-align: center;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
    padding: 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ccc;
}

/* Ensure that links are always visible and adapt on small screens */
@media (max-width: 600px) {
    .social-links a {
        font-size: 16px;
        margin: 0 10px;
    }

    .dynamic-text {
        font-size: 8vw; /* Larger font size for better visibility on smaller screens */
    }
}
