body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 1s ease-in-out; /* Add transition for opacity */
    opacity: 0; /* Start with opacity 0 */
}

.content {
    position: absolute; /* Use absolute positioning */
    top: 30%; /* Move the content section higher up (30% from the top) */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position to center */
    width: 60%; /* Set width to 60% of the viewport */
    min-height: 200px; /* Set a minimum height for the content */
    color: white;
    text-align: center;
    padding: 20px; /* Add padding for space around the text */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-opaque black background */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Optional: shadow for depth */
}

.footer {
    position: absolute; /* Position it at the bottom */
    bottom: 20px; /* Space from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust position to center */
    text-align: center; /* Center the text */
    color: white; /* Text color */
    width: 60%; /* Match the width of the content section */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-opaque black background */
    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Padding for space around the text */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Optional: shadow for depth */
}

.linkedin-link {
    color: #0077b5; /* LinkedIn blue color */
    text-decoration: none; /* Remove underline */
    font-size: 1.2em; /* Font size */
    margin-right: 20px; /* Space between link and button */
}

.return-home {
    padding: 10px 20px; /* Button padding */
    font-size: 1.2em; /* Font size */
    background-color: #007bff; /* Button color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.return-home:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

a {
    color: #007BFF; /* Default link color */
    text-decoration: none; /* Remove underline */
}