body {
    font-family: Arial, sans-serif;
    background-image: url('images/background.jpg'); /* Add your background image */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow-y: auto; 
}

.header {
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
    width: 80%;
    max-width: 800px;
}

h2 {
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 1em;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.footer {
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Existing styles */
.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.2em;
    color: #333;
}


body {
    font-family: Arial, sans-serif;
    /*background-image: url('/Users/arnavangarkar/Desktop/Arnav/Hack/automl_background_image.png'); /* Add your background image */
    background-image: url('/automl_background_image.png'); /* Add your background image */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow-y: auto;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin: 10px 0 5px;
}

input {
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

p {
    margin-top: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.info-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
    width: 80%;
    max-width: 800px;
}

.features, .benefits, .cta {
    margin-top: 20px;
}

.feature {
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
}

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

.benefits li {
    background: #007bff;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.2em;
    color: #333;
}
