
#weatherheader{
    position: absolute;
}
#weather-close{
    display: flex;
    width: 40px;
    height: 15px;
    margin-top: 12px;
    margin-left: 350px;
}
.weather-header {
    transform: translateY(200px);
    display:flex;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.5);
    width: 400px;
    height: 500px;
    border: solid 2px black;
    border-radius: 5%;
    box-shadow: 5px 5px 5px rgb(127, 185, 255);
    overflow: hidden;
    display:none;
}
.weatherForm{
    margin-top: 15px;
    margin-bottom: 15px;
}
.cityInput {
    margin-top: 5px;
    margin-left: 5px;
    font-size: 15px;
    padding: 10px;
    border: 2px solid black; 
    border-radius: 2rem;
}
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display:none;
}
.weather-submit{
    padding: 10px;
    background-color: white;
    border: solid 2px black;
    border-radius: 2rem;
    cursor: pointer;
}
.weather-submit:hover{
    background-color: rgb(165, 207, 244);
    border: solid 2px black;
    border-radius: 2rem;
}
.cityDisplay{
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 3.5rem;
}
.tempDisplay {
    font-size: 3.5rem;
    font-weight: bold;
}
.tempDisplay, .humidityDisplay, .descDisplay, .weatherEmoji .errorDisplay{
    font-size: 1.5rem;
    margin: 5px 0;
}
.weatherEmoji{
    font-size: 5.5rem;
}
.errorDisplay{ 
    margin-top: 5px;
    font-size: 1.5rem;
}