body{
    background: #8C52FF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#container{
    width: 98vw;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

#content{
    width: 30%;
    min-height: 30%;
    max-height: 93%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

h2{
    color: #fff;
    margin: 3% 0;
    font-size: 2vw;
}

input{
    width: calc(100% - 6vw);
    padding: 2%;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid white;
    margin-top: 2%;
    font-size: 1.3vw;
}

button{
    background: #debff4;
    color: white;
    padding: 2%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 3%;
    width: 20%;
    font-size: 1.15vw;
}

#weather-icon{
    display: none;
    width: 30%;
}

#temp-div{
    font-size: 1.4vw;
    /* margin-top: -28px; */
}


#hourly-forecast{
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-between;
    width: 100%;
    overflow-y: hidden;
    overflow-x:     
}


.hourly-item {
    flex: 0 0 auto;
    width: 21%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    color: white;
}

#weather-info{
    text-align: center;
}

#weather-info p{
    font-size: 1.4vw;
}

.hourly-item span{
    font-size: 1.2vw;
}

.hourly-item img{
    width: 47%;
}

@media screen and (min-width:481px) and (max-width:768px){
    #content{
        width: 55%;
    }
    h2,
    input,
    button,
    #temp-div,
    #weather-info p,
    .hourly-item span{
        font-size: 2vw;
    }
}


@media (max-width:480px) {
    #content{
        width: 65%;
    }
    h2,
    input,
    button,
    #temp-div,
    #weather-info p,
    .hourly-item span{
        font-size: 3vw;
    }

}
/* body {
    background: #8C52FF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#weather-container {
    background: rgba(255, 255, 255, 0.3);
    max-width: 400px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    /* height: 90%; 
}
#pressure{
    color: red;
}
h2, label{
    color: #fff;
    margin: 8px 0;
}

input {
    width: calc(100% - 16px);
    padding: 8px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid white;
    margin-top: 20px;
}

button {
    background: #debff4;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    width: 100px;
    font-size: 15px;
}

button:hover {
    background: #8b48d7;
}

#temp-div p {
    font-size: 60px;
    margin-top: -30px;
}

#weather-info {
    font-size: 20px;
}

#weather-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px; 
    margin-bottom: 0;
    display: none;
}

#hourly-forecast {
    margin-top: 50px;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.hourly-item {
    flex: 0 0 auto;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    color: white;
}

.hourly-item p{
    color: red;
    margin-bottom: 1rem;
}

.hourly-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

#hourly-heading {
    color: #fff;
    margin-top: 10px;
} */