/* General Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Main Content */
main {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.teaser {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    margin: 20px 0; /* Add some margin around the section for spacing */
}

.teaser img {
    max-width: 40%;
    max-height: auto;
    border-radius: 5px;
}

/* Typography & Colors */
h1, h2 {
    font-weight: 300;
}

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

p {
    margin: 20px 0;
    font-size: 18px;
}

/* Features Section */
.features ul {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

/* Sign-Up Form */
.signup form {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 5px;
}

input[type="text"], input[type="email"] {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 16px;
}

a {
    color: #fff;
}

@media (max-width: 768px) {
    .signup form input[type="text"], .signup form input[type="email"] {
        width: 100%;
    }
}
