*{
    padding: 0px 0px;
    margin: 0px 0px;
}
.header{
    height: 130px;
    width: 100%;
    padding: 2% 10%;
    background-color: rgb(30, 32, 43);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: whitesmoke;

}
.header-font{
    font-family: Roboto, "Open Sans", sans-serif;
    width: 700;
    font-size: 16px;
}
.header-font-smol{
    font-family: Roboto, "Open Sans", sans-serif;
    width: 500;
    font-size: 12px;
    color: rgb(191, 193, 200);
}
.logo{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.logo img{
    width: 70px;
}
.logo div{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.Detect-location{
    display: flex;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;
    padding: 5px 5px;
}
.Detect-location i {
    color: rgb(1, 148, 207);
    font-size: 25px;
}

.Detect-location:hover{
    color: rgb(1, 148, 207);
    border-style: solid;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 5px  rgba(1, 149, 207, 0.434) ; 
}

.content{
    padding: 4% 10%;
    width: 100%;
    min-height:600px;
    background-color: rgb(30, 32, 43);
    background-image: url(./images/banner.png);
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.content *{
    width: 100%;
}
.content input{
    height: 50px;
    border-radius: 30px;
    border-style: hidden;
    padding: 10px 20px;
    background-color: rgb(30, 32, 43);
    color: white;
    font-size: large;
    box-sizing: border-box;
}
.content input:focus{
    border-style: hidden;
    outline: none;
}
.content input:hover{
    box-shadow: 0px 0px 5px 5px  rgba(1, 149, 207, 0.434) ;
}
.Weather-output{
    margin-top: 100px;
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    display: flex;
    /* justify-content: space-between;  */

}
.font-gray{
    width: 400;
    font-family: Roboto, "Open Sans", sans-serif;
    font-size: 18px;
    color: rgb(191, 193, 200);
}
.font-blue{
    width: 300;
    font-family: Roboto, "Open Sans", sans-serif;
    font-size: 14px;
    color:rgb(0, 154, 216);
}

.font-white-smoal{
    width: 700;
    font-family:Roboto, "Open Sans", sans-serif;
    font-size: 24px;
    color:rgb(255, 255, 255);
}
.font-white-larg{
    width: 700;
    font-family:Roboto, "Open Sans", sans-serif;
    font-size: 90px;
    color:rgb(255, 255, 255);
}
.icon-width-smoal{
    width: 20px;
}
.icon-width-larg{
    width: 100px;
}

.today .date-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    background-color: rgb(45, 48, 61);
    height: 30px;
    padding: 10px 15px;
    box-sizing: border-box;

}
.date-header p{
    width: fit-content;
}
.stat{
    display: flex;
}
.stat div{
    display: flex;
    column-gap: 5px;
}
.today .date-body{
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
    box-sizing: border-box;
    justify-content: space-around;
    height: 400px; 
}
.today{
    background-color: rgb(50, 53, 68);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
    
}
.tomorrow{
    background-color: rgb(38, 41, 54);
}
.tomorrow .date-header{
    background-color: rgb(34, 37, 48);
    display: flex;
    padding: 5px 0px;
    box-sizing: border-box;
    justify-content: center;

}
.after-tomorrow{
    background-color: rgb(50, 53, 68);
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;

}
.after-tomorrow .date-header{
    background-color:rgb(45, 48, 61);
    display: flex;
    padding: 5px 0px;
    box-sizing: border-box;
    justify-content: center;

}

.after .date-body{
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 5px;
    height: 400px; 
    box-sizing: border-box;
}
.after .date-body .font-blue{
    padding-top: 20px;
}
.after .date-body img{
    padding-bottom: 20px;
}
.after .date-body *{
    width: fit-content;
}




@media (max-width: 768px) {
  .Weather-output {
    flex-direction: column; 
  }
  .box {
    min-height: 250px;
    height: auto;
  }
  .after-tomorrow{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
  }
    .today{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
  }

}
@media (max-width: 900px) {
    .font-white-larg{
        font-size: 60px;
        width: 600;

  }
}
