:root {
    --primary-color: #008080;
    --secondary-color: #004466; 
    --background-color: #e8f0fb; 
    --text-color: #333333; 
    --highlight-color: #fcb56e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 30px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

input[type="text"] {
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 400px;
    margin-bottom: 20px;
   
    transition: border-color 0.3s ease;
}


button {
    padding: 12px 24px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}

#weatherData {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-color);
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}
