body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/v1565644934/rhodyWeather.jpg');
    
}

.curs {
    padding: 5px;
}
#content {
    color: rgba(255, 255, 0, 1);
    display: flex; 
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    /* margin: 0;
    padding: 0; */
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 100;
    text-shadow: 2px 2px black;
    /* box-sizing: border-box; */
    align-items: center;
    /* background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/v1573714285/blueSky.jpg'); */
    opacity: 0;
    overflow-x: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s  ease;
}

hr {
    width: 90vw;
    margin-top: 1px;
    margin-bottom: 1px;
    border-color:rgba(200,200,200, 0.5);
}
header {
    display: flex;
    justify-content: center;
}

#address {
    background-color: rgba(0,0,0,0);
    color: rgba(255, 255, 0, 1);
    border: hidden;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    margin: 5px;
    font-family: 'Roboto';
    font-weight: 100;
    /* margin-bottom: 5px; */
    width: 100%;
    text-align: center;
    transition: background-color 0.5s ease;
}

#address:focus {
    background-color: rgb(170, 170, 170);
    font-size: 1.2rem;
    color: black;
    border: none;

}

#address:focus + .go {
    opacity: 1;
}
/* input {
    text-rendering: unset;
} */
#address::placeholder {
    font-family: 'Roboto', 'sans serif';
    font-weight: 100;
    color: rgba(255, 255, 0, 1);
    font-size: 1.2rem;
    /* font-weight: 300; */
    height: 30px;
    line-height: 30px;
}

input[type=text] {
    font-size: 1.2rem;
}

.go {
    cursor: pointer;
    opacity: 0;
    height: 35px;
    border: none;
    background-color: rgb(0, 81, 255, 0.50);
    border-radius: 5px;
    color: white;
    font-family: 'Roboto', 'sans serif';
    font-weight: 300;
    box-shadow: 0.5px 0.5px black;
    /* right: 5px; */
    /* margin-left: 25px; */
    transition: opacity 0.5s ease;
}

.reload {
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    /* height: 25px; */
    border: none;
    background-color: rgba(0, 81, 255, 0);
    border-radius: 5px;
    color: white;
    font-weight: 300;
    /* box-shadow: 0.5px 0.5px black; */
}

.spin {
    transition: transform 2s;
    transform: rotate(720deg);
}
.radar {
    border: none;
    margin-left: 0%;
    margin-top: 0.2rem;
    height: 0;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    transition: height 0.5s ease;
}

.radContainer {
    height: 0;
    transition: height 0.5s ease;
}

.radarBtn {
    cursor: pointer;
    height: 20px;
    width: 100%;
    border: none;
    background-color: rgb(0, 81, 255, 0.50);
    border-radius: 5px;
    color: white;
    font-family: 'Roboto', 'sans serif';
    font-weight: 300;
    box-shadow: 0.5px 0.5px black;
    /* position: absolute; */
    /* left: 5px; */
}
.bg {
    color: rgb(255, 255, 0);
    text-shadow: 2px 2px black;
    font-weight: 100;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: scroll;
    /* padding: 1rem; */
    }

nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.2rem;
    justify-content: space-around;
    width: 98vw;
}

.formCenter {
    display: flex;
    align-items: center;
    /* margin-left: 50px; */
}
main {
    width: 90%;
    opacity: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: space-around;
    transition: all 0.5s ease;
    /* padding: 1rem; */
}
.date {
    width: 100%;
    margin: 0;
    text-align: center;
}
h2, h3 {
    margin: 0;
    text-align: center;
}

#image {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.temp {
    font-size: 5rem;
}
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 30px;
    /* margin-bottom: 10px; */
}

#alertTitle {
  color: rgb(0, 255, 255);
  font-size: 1.5rem;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  animation: flash 2s linear infinite;
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}

.alertText {
    height: 0px;
    /* padding: 0.5rem; */
    overflow: hidden;
    /* opacity: 0; */
    transition: height 0.5s ease;
}

.alertTextOpen {
    max-height: none;
    /* opacity: 1; */
    
}
.currently {
    cursor: pointer;
    height: auto;
    transition: height 0.5s ease;
}

.currently.open {
    height: 200px;
}

.wind, .gusts, .dewPoint, .wetBulb, .pressure, .feels, .humidity, .visibility, .sunrise, .sunset, .temp, .hourTemp, .dayMaxMin, .cloudBase, .uvi {
    color: white;
}

.sky {
    font-size: 3rem;
}
.hourly {
    display: block;
    height: auto;
    margin: 5px;
    transition: height 0.5s ease;
    overflow-x: scroll;
    overflow-y: hidden;
    font-size: 25px;
    white-space: nowrap;
}

/* .hourly::-webkit-scrollbar, .daily::-webkit-scrollbar {
    display: none;
} */

.hourData {
    display: inline-block;
}
.hourly.open {
    height: 100px;
}

.hourImage {
    height: 50px;
    width: 50px;
}
.hourTime {
    font-size: 17px;
    width: 7rem;
}

.hourWind {
    font-size: 17px;
    color: white;
}

.daily {
    display: block;
    height: auto;
    margin: 5px;
    transition: height 0.5s ease;
    overflow-x: scroll;
    overflow-y: hidden;
    font-size: 20px;
    white-space: nowrap;
    
}

.dailyToggle {
    height: auto;
}

.daily.open {
    height: 170px;
}

.dayImage {
    height: 50px;
    width: 50px;
}
.dayData {
    border-radius: 5px;
    display: inline-block;
    font-size: 20px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem;
    width: 100px;
}

.dayDescription {
    height: 50px;
    overflow-y: scroll;
    white-space: normal;
}

.dayTime {
    font-size: 17px;
    margin-bottom: 0.5rem;
}

article {
    position: absolute;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: auto;
    width: 100%;
    transition: height 0.5s ease;
}

footer {
    /* display: ; */
    background-color: gray;
    bottom: 0;
    position: fixed;
    text-align: center;
    width: 100vw;
    height: 25px;
    line-height: 25px;
    text-align: center;
    /* justify-content: center;
    margin-top: auto; */
}

ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: space-around;
    padding-left: 0%;
}

li {
    display: flex;
    justify-content: space-between;
}

p {
    display: flex;
    justify-content: center;
    margin: 0;
}

#image {
    text-align: center;
    width: 100%;
}
.large {
    height: 130px;
    width: 130px;
}

.rise {
    height: 30px;
    width: 30px;
}

.dayRise {
    height: 15px;
    width: 15px;
}
.fewClouds {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/v1565969495/cirrostratus.jpg');
    background-size: cover;
}

.fewCloudsNight {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/v1568960011/partly-cloudy-night-moon_xcxrcu.jpg');
    background-size: cover;
}

.partyCloudy {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-10/v1577636942/scatteredClouds.jpg');
    background-size: cover;
}

.cloudy {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-70/v1568960016/cloudy_qnxsnb.jpg');
    background-size: cover;
}

.cloudyNight {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-70/v1568960016/cloudy_qnxsnb.jpg');
    background-size: cover;
}

.clear {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-50/v1573714285/blueSky.jpg');
    background-size: cover;
}

.clearNight {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/v1567654813/NightSky_u3ts5x.png');
    background-size: cover;
}

.snow {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-70/v1573031978/snowflakes_c2n8jy.jpg');
    background-size: cover;
}

.rain {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-70/v1572514727/raindrops_wvpegu.jpg');
    background-size: cover;
}

.mist {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-50/v1568960618/fog_utjjeu.jpg');
    background-size: cover;
    }

.thunderstorm {
    background-image: url('https://res.cloudinary.com/jjdonnel/image/upload/e_brightness:-50/v1572681576/windy_c8m7ee.jpg');
    background-size: cover;
}

@media only screen and (min-height: 740px) {
    .currently {
        height: 38vh;
    }
}

@media only screen and (min-width: 800px) {
    
    .currently {
        height: auto;
        width: 40vw;
    }

    .daily, .hourly {
        height: auto;
        overflow: scroll;
        display: flex;
        flex-direction: row;
    }
    .hourly::-webkit-scrollbar, .daily::-webkit-scrollbar, .dayDescription::-webkit-scrollbar, .currently::-webkit-scrollbar {
        height: 10px;
        width: 10px;
        background: rgba(0, 0, 0, 0);
    }

    .hourly::-webkit-scrollbar-thumb, .daily::-webkit-scrollbar-thumb, .dayDescription::-webkit-scrollbar-thumb, .currently::-webkit-scrollbar-thumb {
        background: #3d3d3971;
        -webkit-border-radius: 1ex;
        -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
    }
    .hourly::-webkit-scrollbar-corner, .daily::-webkit-scrollbar-corner, .dayDescription::-webkit-scrollbar-corner, .currently::-webkit-scrollbar-corner {
        background: rgba(0, 0, 0, 0);
    }

    .hourly {
        padding-bottom: 10px;
    }

    .daily {
        padding-bottom: 5px;
    }

    #main {
        /* height: 100vh; */
    }
    .radContainer {
        height: 100%;
        width: 60vw;
        overflow: hidden;
    }

    .radar {
        width: 100%;
        height: 100%;
        margin-left: 0%;
        /* overflow: hidden; */
    }

    .radarBtn {
        display: none;
    }
    /* iframe #document{
        overflow: hidden;
    } */
    .top {
        display: flex;
        flex-direction: row;
        height: auto;
        /* overflow: hidden; */

    }
}

@media only screen and (max-width: 900px) {
    .hourly::-webkit-scrollbar, .daily::-webkit-scrollbar {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .top {
        height: auto;
    }

    .currently {
        height: auto;
    }

    /* .article {
        overflow: scroll;
    } */
    .bottom {
        height: auto;
        display: flex;
        flex-direction: row;
    }

    .currently {
        overflow-y: scroll;
    }

    .hourly {
        width: 40vw;
        height: auto;
    }

    .daily {
        width: 40vw;
        height: auto;
    }

    hr {
        width: 0;
    }

    .radarBtn {
        display: none;
    }
}

