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

.main {
    background-color: rgb(37, 37, 37);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

.box {
    width: 90%;
    max-width: 400px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #bfff00, #be6a09);
    padding: 25px 15px;
    color: white;
    box-shadow: 0px 0px 20px white;
    text-align: center;
}

.inp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.inp input {
    width: calc(100% - 60px);
    padding: 14px 18px;
    border-radius: 2rem;
    outline: none;
    border: none;
    background-color: transparent;
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    font-size: 16px;
    transition: all 0.3s ease;
}

.inp input:hover {
    background-color: white;
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0px 0px 10px white;
}


.inp button {
    padding: 14px 18px;
    border-radius: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    box-shadow: 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255);
    font-size: 16px;
    transition: all 0.3s ease;
}

.inp button:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: rgb(255, 255, 255);

}

#country {
    font-weight: 500;
    margin-top: 20px;
}

#temp {
    font-size: 40px;
    font-weight: 600;
}

#des {
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
}

.two {
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.hum img {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.hum h1 {
    font-weight: 500;
    font-size: 20px;
    margin-left: 10px;
}

.inner p {
    font-size: 14px;
    margin-top: 8px;
}

#err {
    font-size: 18px;
    margin-top: 10px;
    display: none;
}