* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

header {
    background: #6200ea;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

header p {
    font-size: 1.2rem;
}

.input-section {
    margin: 30px 0;
}

.input-section form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.input-section input[type="url"] {
    padding: 10px;
    font-size: 1rem;
    width: 80%;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.input-section button {
    padding: 10px 20px;
    background-color: #6200ea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.input-section button:hover {
    background-color: #3700b3;
}

.features {
    background: #6200ea;
    color: white;
    padding: 20px 0;
}

.features ul {
    list-style: none;
    font-size: 1.1rem;
    margin: 20px 0;
}

.features ul li {
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}
