/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

center {
    width: 100%;
}

input {
    width: 320px;
    max-width: 90%;
    padding: 14px 18px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

button {
    padding: 14px 28px;
    margin-left: 10px;
    border: none;
    border-radius: 30px;
    background: #1d4ed8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

button:active {
    transform: scale(.97);
}

#weat {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#child {
    width: 550px;
    max-width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    text-align: center;
    color: #280eeb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px
}

#child h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#child p {
    font-size: 18px;
    margin: 12px 0;
    padding: 12px;
    background: rgba(255, 255, 255, .15);
    border-radius: 10px;
}

#weat>h1{
    margin-bottom:50vh
}
.copyrights {
    width: 100%;
    text-align: center;
    margin-top: 25px;
    padding: 10px 0;
    color: #280eeb;
    font-size: large;

}

@media(max-width:500px) {

    body {
        padding: 20px;
    }

    input {
        width: 100%;
        margin-bottom: 15px;
    }

    button {
        margin-left: 0;
        width: 85%;
    }

    #child h1 {
        font-size: 28px;
    }

    #child p {
        font-size: 16px;
    }
}