 body {
            text-align: center;
            background-color: rgb(19, 19, 19);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100vh;
            margin: 0;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
        }

        .grecaptcha-badge {
            display: none;
        }

        .logo {
            width: 800px;
            margin-bottom: 20px;
        }

        .btn-container {
            width: 100%;
            max-width: 820px;
            margin: auto;
        }

        .btnmain {
            display: flex; /* Use flexbox for the button layout */
            align-items: center; /* Vertically center the content */
            justify-content: center; /* Center the text */
            padding-left: 20px; /* Add padding for the emoji */
            position: relative; /* Allow absolute positioning for the emoji */
            margin-bottom: 10px; /* Consistent margin for all buttons */
        }

        .btn .emoji {
            position: absolute; /* Fix the emoji to the left */
            left: 10px; /* Adjust the distance from the left edge */
        }

        .btn .text {
            text-align: center; /* Center the text */
            /* Add some space to the right of the emoji */
            width: 100%; /* Ensure the text takes the full width of the button */
        }
        .btn:hover {
    background-color: #3a3a3a; /* Light grey color */
    color: white; /* Optional: change text color to black for better contrast */
}
        .dropdown-menu {
            min-width: 100%; /* Ensures dropdown is full width of its button */
        }
        b {
            display:none;
        }
        .mail {
            font-family: monospace;

        }
        .emailbutton {
            margin-top: 150px;
            margin-bottom: 40px;
        }
        .emailinput {
            border: 1px solid white;
        }


        .email form input,
        .email form button {
            width: 100%;
        }


        @media (max-width: 768px) {
            body {

            padding-top: 2vh;
            
        }
        }