body {
    height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

nav {
    background-color: rgba(0, 153, 51, 0.3);
}

nav div div:first-child {
    text-align: center;
    line-height: 100%;
}

nav div div:last-child {
    text-align: center;
    line-height: 100%;
}

#marker {
    position: relative;
    top: 38px;
    left: -10px;
    display: flex;
    flex-wrap: nowrap;
    color: orange;
}

#city_info {
    color: white;
    font-size: 5vh;
    position: relative;
    top: -10px;
    float: left;
}

@keyframes btnSearch {
    0% {
        width: 0px;
    }
    100% {
        width: 150px;
    }
}

@-webkit-keyframes btnSearch {
    0% {
        width: 0px;
    }
    100% {
        width: 150px;
    }
}

.input-group {
    width: 250px;
}

#userInput {
    position: relative;
    left: 180px;
    top: 20px;
}

#searchIcon:hover {
    color: black;
    cursor: pointer;
}


/* #searchIcon:hover .input-group-addon {
    background-color: red;
} */


/* #searchField {
    border-radius: 50px;
    position: relative;
    top: 27px;
    outline: none;
    text-align: center;
    display: none;
    animation: btnSearch 3s linear;
    -webkit-animation: btnSearch 3s linear;
    Safari 4.0 - 8.0
} */

#date {
    color: white;
    position: relative;
    top: 15px;
    left: 60px;
}

@media screen and (min-width: 600px) {
    @keyframes arrow_move {
        0% {
            color: black;
            left: 50px;
        }
        100% {
            color: rgb(223, 93, 93);
            left: 15px;
        }
    }
    @-webkit-keyframes arrow_move {
        0% {
            color: black;
            left: 50px;
        }
        100% {
            color: rgb(223, 93, 93);
            left: 15px;
        }
    }
    .fa-angle-left {
        position: fixed;
        top: 315px;
        height: 50%;
        color: black;
        z-index: 2;
        animation: arrow_move 1s ease-in 0s infinite alternate;
        -webkit-animation: arrow_move 1s ease-in 0s infinite alternate;
    }
}

#weather_description {
    color: orange;
}

#weather_container {
    top: 50px;
}

#icon1 {
    position: relative;
    display: block;
    margin: auto;
    top: -5px;
}

#weather_stats_container {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    width: 47vw;
    margin: auto;
}

.stats {
    font-weight: 900;
}

#temp_toggle {
    cursor: pointer;
    color: white;
    padding: 5px;
    float: left;
    margin-left: -15px;
    border-radius: 20px 0px 0px 20px;
    background-color: rgba(0, 153, 51, 0.3);
    width: 30px;
    height: 50px;
}

#temp_toggle:hover {
    background-color: #003d99;
}

#temp_toggle:focus {
    outline: 0;
}

#last_update {
    font-size: 12px;
    color: orange;
    font-weight: 600;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

footer p {
    line-height: 25px;
}

footer p a {
    color: green;
}

footer p a:hover {
    color: green;
    text-decoration: none;
}