body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    background: url(weather\ bg.jpg);
    background-size: cover;
}

.weather-app {
    color: white;
    text-align: center;
    background: blur(30px);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    text-shadow: 0px 0px 10px black,
    0px 0px 10px black,
    0px 0px 10px black
    ,0px 0px 10px black,
    0px 0px 10px black;
    max-width: 400px;
    margin: 0 auto;
}

input {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

button {
    padding: 15px;
    background:rgb(73, 73, 73);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
button:hover{
    background: black;
}

#weatherResult {
    margin-top: 20px;
    font-size: 18px;
    text-shadow: 0px 0px 10px black,
    0px 0px 10px black,
    0px 0px 10px black
    ,0px 0px 10px black,
    0px 0px 10px black;
}


@media (min-width: 1200px) {
    .weather-app {
        max-width: 500px;
    }
}


@media (min-width: 768px) and (max-width: 1199px) {
    .weather-app {
        max-width: 400px;
    }
}


@media (max-width: 767px) {
    .weather-app {
        max-width: 300px;
    }
    input, button {
        padding: 8px;
    }
    #weatherResult {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .weather-app {
        max-width: 250px;
    }
    input, button {
        padding: 5px;
    }
    #weatherResult {
        font-size: 14px;
    }
}