*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100%;
    width: 100%;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    width: 100%;
    background-color: rgb(74, 74, 205);
    color: white;
   
}
main{
   height: 90vh;
   width: 100%;

}
aside{
    max-width: 25%;
    display: flex;
    flex-direction: column;
    height: 500px;
    gap: 10px;
}
section{
    width: 75% ;
    display: flex;
    gap: 10px;
 
}

.or{
    width: 60%;
    height: 2px;
    background-color: black;
}

#currentWeather{
   
    height: 200px;
    border-radius: 5px;
    background-color:  rgb(74, 74, 205);
}
#nextWeather{
    height: 400px;
}
.weather{
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding-left: 5px;
    height: 200px;
    width:200px;
    border-radius: 4%;
}


