body {
    margin: 0;
    padding: 0;
    color: white; /* Change text color to white */
    font-family: 'IBM Plex Mono', monospace;
    font-size: small;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    height: 100vh;
    hyphens: none;
    letter-spacing: normal;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scrollbars */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Half-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3); /* 25% opacity black background */
    padding: 50px; /* Adding padding to encapsulate the content */
    border-radius: 20px; /* Adjust the value to control the roundness of the corners */
}

/* Add a more specific selector */
div.content {
    border-radius: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: -15px;
}

h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

form {
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: normal;
}

label {
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
}

input[type="text"] {
    text-align: center;
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 8px; /* Adjust padding for input */
    margin-top: 10px; /* Add margin between label and input */
    width: 75%; /* Adjust the width as necessary */
}

button[type="submit"] {
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 10px 20px;
    margin-top: 10px; /* Add space between input and button */
}

#results {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}


/* Hide scrollbar */
::-webkit-scrollbar {
    width: 0;
    background: transparent; /* Optional: Set background color to match body background */
}

/* Optional: Hide scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: transparent;
}

