 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: black;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #BC8C72;
            gap: 20px;
            padding-top: 50px;
        }
        
        h1,h2,h3,h4 {
            color: #eba;
        }
        
        .links {
            display: flex;
            gap: 20px;
        }
        a {
            color: #BC8C72;
            font-size: 14px;
            text-decoration: underline;
        }
        a:hover {
            color: #E4B89D;
            text-decoration: underline;
        }
        
        p {
        max-width: 95vw;
        width: 400px;
        
        }
