@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

        body {
            background-color: black;
            color: white;
            font-family: 'Roboto', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            opacity: 0;
            animation: fadeIn 2s forwards;
            background: url('background.jpg') no-repeat center center fixed;
            background-size: cover;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: slideIn 1s ease-out;
        }

        .content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 60vh;
            text-align: left;
            font-size: 1.2rem;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
            margin-top: 20px;
            animation: slideIn 2s ease-out;
        }

        a:hover {
            color: lightskyblue;
            transform: scale(1.1);
        }

        .container {
            text-align: center;
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            h1 {
                font-size: 2rem;
            }

            .content {
                font-size: 1rem;
                height: auto;
            }

            a {
                margin-top: 10px;
            }

            .container {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }

            .content {
                font-size: 0.9rem;
            }

            .container {
                padding: 5px;
            }
        }