

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


body {
    background: linear-gradient(135deg, #fefe89, #ff66c7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}


.container {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    max-width: 450px;
    color: white;
    
}


.container h1 {
    font-family: "Cursive", sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

form input[type="text"] {
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    width: 65%;
    outline: none;
    transition: 0.3s;
}

form input[type="text"]:focus {
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}


form input[type="submit"] {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

form input[type="submit"]:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff4e78, #ff3a68);
}


.icon img {
    width: 120px;
    height: 120px;
    margin-top: 10px;
    animation: fadeIn 1.5s ease-in-out;
}


.temperature {
    font-size: 50px;
    font-weight: bold;
    margin: 15px 0;
}


.description {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
}


.details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.details > div {
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    margin: 5px;
    flex: 1;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    form {
        flex-direction: column;
    }

    form input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .details {
        flex-direction: column;
    }
}