/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
}

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

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffdd40;
}

form, .result-list {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

button {
    background: #ffdd40;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #e8c038;
}

.result-list img {
    max-width: 100%;
    border-radius: 5px;
    transition: transform 0.2s;
}

.result-list img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    .container {
        padding: 10px;
    }
}
