body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-size: 16px;
    color: #333;
    font-family: "Roboto", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 1024px) {
    #main {
        margin: 0 auto;
        margin-top: 50px;
        max-width: 100%;
        padding: 0 20px; /* Added padding to handle smaller screens */
    }

    #main-text {
        padding: 20px;
    }

    #signup-form {
        padding: 30px; /* Adjusted padding for smaller screens */
    }

    #submit-input-splash {
        margin-top: 20px;
        width: 100%; /* Make button full width on smaller screens */
    }
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.5rem;
}

#nav {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px;
}

#nav span {
    margin-left: 20px;
    color: #999;
    float: right;
}

#nav a {
    text-decoration: none;
    color: #999;
}

#nav a:hover {
    color: #666;
}

#main {
    margin: 0 auto;
    margin-top: 5%;
    text-align: center;
}

#signup-form {
    background: #34a86e;
    margin: 0 auto;
    margin-top: 25px;
    padding: 40px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#signup-form p {
    font-size: 1rem;
}

.text-input {
    padding-left: 10px;
    background: #f5f5f5;
    border: none;
    border-radius: 5px; /* Default rounded corners */
    font-size: 1rem;
    max-width: 350px;
    height: 50px;
}

#submit-input-splash {
    height: 50px;
    background: #333;
    border: none;
    border-radius: 5px; /* Default rounded corners */
    box-shadow: none;
    letter-spacing: 1px;
    color: #fff;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .text-input,
    #submit-input-splash {
        border-radius: 5px; /* Maintain rounded corners on smaller screens */
    }
}



#submit-input-splash:hover {
    background: #1b5e20;
}

#signup-form p {
    margin-bottom: 0;
}

.activate-text {
    margin-top: 50px;
    text-align: center;
    font-size: 1rem;
}

a {
    color: #333;
}
