/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background: url('../IMG/weather\ img.jpg') no-repeat center center fixed;
    background-color: hsl(0, 0%, 95%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Form Container Styles */
.weatherForm {
    margin: 20px;
}

/* Input Field Styles */
.cityInput {
    padding: 10px;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid hsla(0, 0%, 20%, 0.3);
    border-radius: 10px;
    margin: 10px;
    width: 300px;
}

/* Submit Button Styles */
button[type="submit"] {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 2rem;
    background-color: hsla(122,39%, 50%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Submit Button Hover Effect */
button[type="submit"]:hover {
    background-color: hsla(122,39%, 40%);
}

/* Weather Card Styles */
.card {
    background: linear-gradient(180deg,hsl(210, 100%, 75%),hsl(40, 100%, 75%));
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px hsla(0,0%,0%,0.5);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading Styles */
h1 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 25px;
}

/* Paragraph Styles */
p {
    font-size: 1.5rem;
    margin: 5px 0;
}

/* City and Temperature Display Styles */
.cityDisplay, .tempDisplay {
    font-size: 3.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%,0.75);
    margin-bottom: 25px;
}

/* Humidity Display Styles */
.humidityDisplay {
    font-weight: bold;
    margin-bottom: 25px;
}

/* Weather Description Styles */
.descDisplay {
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
}

/* Weather Emoji Styles */
.weatherEmoji {
    margin: 0;
    font-size: 7.5rem;
}

/* Error Message Styles */
.errorDisplay {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
}
