 body {
    background-image: linear-gradient(to right, #3232fd, #1717c2, #01014b );
}

.modalSearch {
    display: none;
}

#mainHeader {
    text-align: center;
    background-image: linear-gradient(to right, #3232fd, #1717c2, #01014b );
    margin-top: 0px;
    height: 100px;
    font-size: 40px;
    padding-top: 40px;
}

#mainHeader h1 {
    font-weight: bolder;
    font-size: 1.2em;
    letter-spacing: 1.5px;
}


#searchSection {
    float: left;
    width: 22%;
    height: 100%;
    padding-top: 30px;
    
}

#currentIcon {
    width: 104px;
    height: 112px;
    background-color: lightblue;
    border-radius: 38%;
}

#currentDayContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 4%;
}

#mainContainer,
#fiveDayContainer {
    display: none;
    border: 3px solid white;
    background-color: white;
    color: black;
    float:right;
    width: 62%;
    margin: 10px 156px 20px 0px;
    border-radius: 5px;
    box-shadow:  0 7px 30px -10px rgba(150,170,180,0.5);
    overflow-x: scroll;
}

#mainContainer {
    margin-top: 60px;
    flex-direction: column;
}
#fiveDayContainer {
    flex-direction: row;
}

.current {
    display: inline-block;
    margin-top: 10px;
    
}

#cityName {
    text-align: center;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 40px;
}

#currentDay {
    text-align: center;
}

.dynamicInput {
    font-weight: normal;
    margin-left:10px;
}

.weatherTag {
    margin-left: 20px;
    margin-bottom: 10px;
}

.dailyWeather {
    display: inline-flex;
    margin: 20px 15px;
    width:17%;
    height: fit-content;
    border: 1px solid black;
    display:inline-block;
    flex-wrap: wrap;
    background-color: lightblue;
   
}

.dailyWeather h3, .dailyWeather h2 {
    margin: 20px 20px 20px 10px;
}

.dailyDate {
    font-weight:bolder;
    font-size:1.3em;
}

.weatherIcon {
    height: 50px;
    width: 50px;
}

.buttonClass {
    width: 90%;
    height: 50px;
    margin-top: 10px;
    border-style: none none solid none;
    background-color: lightblue;
    border-width: 1px;
    text-transform: capitalize;
}

.recentContainer {
    /* margin-left: 5%; */
    z-index: 200;
}

.dropdown {
    text-align: center;
    margin-top: 20px !important;
    
}

.dropdown-menu {
    text-align: center !important;
    margin-top: 5px !important;
    background-color: lightblue;
    
}


@media screen and (max-width: 720px) {

.dropdown{
    display:flex;
    margin-top: 20px;
    position: static !important;
    justify-content: center;
    font-size: 32px;
}

.dropdown .show {
    display:flex;
    align-items: center;
}

.dropdown-menu {
    transform: translate3d(5%, 190px, 0px) !important;
    background-color: white;
    font-size: 28px;
    flex-direction: column;
    align-items: center;
} 

.buttonClass {
    display: flex;
    width: 68%;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin-top: 10px;

} 

#mainHeader {
    font-size: 28px;
}

#searchSection {
    float:none;
    text-align: center;
    width:100%;
    height: 100%;
}

#weatherForm{
    float:none;
    text-align: center;
}

#searchHeading {
    font-size: 20px;
}

.recentContainer {
    width: 90%;
    height: 100%;
}

#mainContainer {
    border: none;
    border-bottom: 2px solid black;
    padding-bottom: 20px;
}

#cityName {
    font-size:24px;
}

#fiveDayContainer {
    display:flex;
    flex-direction: column;
    border: none;
}

.dailyWeather {
    width:70%;
}

} 