body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden; /* Prevent scrollbars */
    font-family: 'Nunito', sans-serif;
}

.random-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Hide overflowing content */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 0; /* Place the random background behind other content */
}

/* Create a pseudo-element for the blurred background */
.random-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: inherit; /* Inherit the background image from .random-background */
    filter: blur(4px); /* Adjust the blur strength as needed */
    z-index: -1; /* Place the pseudo-element behind other content */
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Dark overlay with 55% opacity */
    z-index: 1; /* Ensure the dark overlay is below the social links */
}


.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2; /* Place the social links above the dark overlay */
    min-width: 320px; /* Minimum width for small screens */
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
    width: 70vw;
    min-width: 320px; /* Minimum width for small screens */
}

.social-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.social-links li {
    margin: 2vh;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: max(min(3vw, 52px), 40px); /* Use max() to ensure a minimum font size of 40px */
    transition: font-size 0.4s, color 0.4s;
}

.social-links a:hover {
    font-size: max(min(3.5vw, 58px), 48px); /* Use max() to ensure a minimum font size of 40px */
    color: #abfd93; /* Change to #abfd93 color on hover */
}

.watermark {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px; /* Add padding for spacing */
    z-index: 2; /* Ensure the watermark is above the overlay and social links */
}

.watermark img {
    width: 326px; /* Set the width to 50px */
    height: 50px; /* Set the height to 50px */
}