*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:linear-gradient(135deg, #74ebd5, #9face6);
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container{
    width:90%;
    max-width:1100px;
    background: #98FB98;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.top-bar{
    background:#333;
    padding:15px;
}

.dot{
    height:14px;
    width:14px;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
}

.red{background:red;}
.yellow{background:gold;}
.green{background:limegreen;}

.content{
    text-align:center;
    padding:40px 20px;
}

.weather-img{
    width:120px;
    margin-bottom:20px;
}

h1{
    font-size:50px;
    margin-bottom:30px;
}

input{
    width:300px;
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:18px;
}

button{
    margin-top:15px;
    padding:12px 40px;
    border:none;
    border-radius:25px;
    background:#ff944d;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#ff7b26;
}

#result{
    margin-top:25px;
    font-size:22px;
}

.footer{
    margin-top:30px;
    color:#444;
}

@media(max-width:768px){
    h1{
        font-size:32px;
    }

    input{
        width:100%;
    }
}