body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    background-size: 100vw 100vh;
    background-image: url(weather_images/wallpaper.png);
    cursor: default;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5); 
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}

h1 {
    font-size: 24px;
}

input[type="text"] {
    width: 95%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.5s;
}

input[type="text"]:hover {
    background-color: black;
    color: white;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: blue;
}

.weather-info {
    margin-top: 20px;
}

.btn{
    background-color: black;
    color: white;
    padding: 5px;
}

.popup{
    width: 50%;
    margin: auto;
    background-color: white;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    position: fixed;
    margin-left: 25%;
    margin-top: 10%;
}

.hidden{
    display: none;
}

.error{
    color: red;
}

.footer{
    color: rgba(255, 255, 255, 0.451);
    user-select: none;
}

.footer:hover{
    color: rgba(255, 255, 255, 0.647);
}

#temperature{
    background-color: rgb(68, 130, 255);
    color: white;
    font-weight: bold;
    padding: 5px;
    margin: 5px;
    border-radius: 15px;
    transition: 0.5s;
}

#description{
    background-color: orange;
    color: white;
    font-weight: bold;
    padding: 5px;
    margin: 5px;
    border-radius: 15px;
    transition: 0.5s;
}

#location{
    color: rgb(109, 71, 0);
}

#description:hover{
    color: red;
}

#temperature:hover{
    color: rgb(0, 255, 191);
}