/* Global settings */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; /* Full height */
    width: 100%; /* Full width */
    display: flex;
    flex-direction: column; /* Stack vertically */
    font-family: 'Roboto', sans-serif;
    background-color: #333333;
    color: #ffffff;
    text-align: center; /* Center text horizontally */
}

/* Flex container for vertical centering */
header, main, footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    padding: 20px;
}

h1, h2 {
    color: #4285F4;
}

.rights li {
    color: #FFFFFF;
    margin-bottom: 1em;
}

.ai-data-store img {
    padding-top: 30px; 
}

.blue-text {
    color: #4285F4
}

.green-text {
    color: #39FF14
}

.pink-text {
    color: #C724B1;
}

/* Style for the email input and button */
input[type="email"], button {
    margin-top: 20px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #C724B1;
    color: #ffffff;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header, main, footer {
        padding: 10px;
    }
    
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    ul {
        list-style-type: none;
        padding: 0;
    }


}

@media (min-width: 768px) {
    ul {
        width: 50%; /* Set the width of the ul to 50% of its parent container */
        margin: 0 auto; /* Center the ul horizontally */
        list-style-type: none; /* Removes bullet points */
        padding: 0; /* Removes default padding */
    }

}