        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background-color: #070c24;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial, sans-serif;
            color: var(--colorthree);
            text-align: center;
            text-shadow: 0 0 0.8px black;
        }

        .container {
            text-align: center;
            max-width: 600px;
        }

        h1 {
            font-size: 3rem;
            color: var(--colorthree);
            margin: 0;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            font-size: 1.2rem;
            margin: 10px 0;
            color: var(--colorthree);
        }

        .button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2rem;
            margin-top: 20px;
            border: 2px solid white;
            color: var(--colorthree);
            background: none;
            cursor: pointer;
            text-transform: uppercase;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .button:hover {
            background-color: var(--colorthree);
            color: #1a1a1a;
        }

        button.button {
            border: 2px solid white;
        }

        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/bg.gif') repeat center center fixed;
            background-color: black;
            background-size: cover;
            opacity: 0.15;
            z-index: -1;
        }
