* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A0E1A;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.container {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 90%;
	margin: 0 auto; /* Center the container */
}

.logo {
    position: fixed; /* Changed from absolute to fixed */
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
    z-index: 4; /* Higher than other elements */
}

.logo:hover {
    transform: scale(1.05);
}

.headline {
    font-size: 2rem;
    font-weight: 300;
    margin: 0; /* Remove top margin */
    padding-top: 40px; /* Add padding instead */
    letter-spacing: 1px;
    color: #E0E0E0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.headline:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
        height: 150px;
    }

    .headline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    .headline {
        font-size: 1.2rem;
    }
}