body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('ob.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 100%;
    margin: 50px auto;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
}

.header-info {
    color: #fff;
    background-image: url('bimage.jpg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    opacity: 0.8;
    margin-bottom: 20px;
}

.heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#location-heading,
.weather-info-content {
    padding: 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s;
    margin-bottom: 20px;
    color: #000401;
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}


.weather-info-content p {
    margin: 16px 0;
}

.weather-info-content p:first-child {
    margin-top: 0;
}

.weather-info-content p:last-child {
    margin-bottom: 0;
}

.location-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#location-form {
    margin-right: 10px;
}

#location-input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 5px;
}

#location-input::placeholder {
    color: #ccc;
}

button[type="submit"],
.refresh-button {
    cursor: pointer;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    background-color: #4A7C59;
    color: #fff;
    transition: background-color 0.3s;
}

button[type="submit"]:hover,
.refresh-button:hover {
    background-color: #346042;
}


footer {
    
    padding: 10px 0; 
    text-align: center;
    position: fixed; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 100%; 
    z-index: 999; 
}