*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://i.pinimg.com/736x/19/9d/1f/199d1f98167a53d44a5ab83ae3adf1cb.jpg);
    background-size: cover;
    filter: blur(3px); 
}

.weather h1{
    color: white;
    margin-bottom: 10px;
}

.weather {
    max-width: 550px;
    position: absolute;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #00fbea, #5b548a);
    text-align: center;
    padding: 30px 25px;
}

.search-bar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.search-bar input {
    border: 0;
    outline: 0;
    background-color: white;
    color: #555;
    border-radius: 30px;
    padding: 10px 25px;
    flex: 1;
    font-size: 18px;
    margin-right: 15px;
    height: 50px;
}

.search-bar button {
    border: 0;
    outline: 0;
    background-color: white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.search-bar button img {
    width: 35px;
    height: auto;
}

.main-bar h1{
    font-size: 80px;
    font-weight: 500;
    color: white;
}

.main-bar h2{
    font-size: 40px;
    font-weight: 400;
    color: white;
}

.details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    margin-top: 50px;
}

.column{
    display: flex;
    align-items: center;
    text-align: left;
}

.column img{
    width: 40px;
    margin-right: 10px;
}

.column p{
    color: white;
}
.humidity, .wind{
    font-size: 28px;
    margin-top: -6px;
    color: white;
}
.error{
    color: white;
    margin-top: 10px;
    font-size: larger;
    display: none;
}
.main-bar{
    display: none;
}
