@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #a0a0a0;
    --background-color: #121212;
    --button-bg-color: #333333;
    --button-hover-bg-color: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    background-color: var(--background-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content {
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    animation: float 2s ease-in-out infinite;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.home-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--button-bg-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid var(--button-bg-color);
}

.home-button:hover {
    background-color: var(--button-hover-bg-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 6rem;
    }

    h2 {
        font-size: 2rem;
    }
}