body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
   
}

.container {
    background-color:rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline-color: #0000ff;
}


button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#weather {
    margin-top: 20px;
    
}

/* Alterar Tema */

body.morning {
    background-image: url("./img/morning.jpg");
    background-size: cover;
    background-position: center;
}
body.afternoon {
    background-image: url("./img/afternoon.jpg");
    background-size: cover;
    background-position: center;
}
body.evening {
    background-image: url("./img/evening.jpg");
    background-size: cover;
    background-position: center;
}
body.night {
    background-image: url("./img/night.jpg");
    background-size: cover;
    background-position: center;
}

/* Alterar Tema */