html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%; /* Ensure the body and HTML fill the screen */
}

/* Background Image */
.background {
    background: url('/static/img/Vefur_Clean.png') no-repeat center center/cover;
    width: 100vw; /* Ensure it spans the entire width of the viewport */
    height: 100vh; /* Ensure it spans the entire height of the viewport */
    display: flex;
    justify-content: center; /* Center content horizontally by default */
    align-items: center; /* Center content vertically by default */
}

/* Content Wrapper */
.content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    
    width: 100%;
    max-width: 100%; /* Prevent unintended overflow */
    transition: all 0.3s ease; /* Smooth transition on layout changes */
}

/* Logo Styling */
.logo {
    width: 160px;
    height: auto;
    max-width: 100%;
    transition: opacity 0.3s ease; /* Smooth transition */
    pointer-events: none; /* Disables pointer interaction on images */
}

.stuff-wrapper:hover {
    opacity: 1; /* Full visibility on hover */
}

/* Remove hyperlink styles globally */
a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Makes link inherit the text color */
}

/* Contact Link */
.contact-link {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: color 0.3s ease; /* Smooth color transition */
    background: transparent; /* Hide background */
}

.stuff-wrapper{
    flex-direction: column;
    max-width: 300px;
    opacity: 0.7; /* Initial transparency */
    transition: opacity 0.5s ease; /* Smooth transition */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .background {
        align-items: flex-start; /* Align content to the top */
        justify-content: center; /* Keep centered horizontally */
        padding-top: 5%; /* Add padding at the top */
    }

    .content-wrapper {
        margin-top: 0; /* Ensure it’s flush at the top */
        padding: 10px; /* Add some padding for spacing */
    }

    .logo {
        width: 250px; /* Increase size for better visibility */
        max-width: 90%;
    }
}
