
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1b1b1b, #2c2c2c);
            color: white;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* header */

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        }

        .logo {
            color: #4bff4b;
            font-size: 24px;
            font-weight: bold;
        }

        /* main layout */

        .container {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px;
        }

        /* left text */

        .left {
            max-width: 500px;
        }

        .left h1 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .left h2 {
            font-size: 30px;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .left p {
            color: #cfcfcf;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .socials {
            margin-top: 20px;
            display: flex;
            gap: 20px;
            font-size: 18px;
        }

        /* right buttons */

        .right {
            display: flex;
            flex-direction: column;
            gap: 20px;
			a{
				text-decoration: none;
			}
        }

        .pill {
            padding: 16px 34px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: transparent;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all .2s ease;
        }
        .pilltwo {
            padding: 16px 34px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: transparent;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all .2s ease;
        }

        .pilltwo:hover {
            background: rgb(0, 0, 0);
            color: rgb(255, 255, 255);
            filter: invert(100%);
        }

        .pill:hover {
            background: white;
            color: black;
        }

        /* footer */

        footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 30px;
            font-size: 13px;
            color: #bbb;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }