* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Bahnschrift', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background: white;
    min-height: 100vh;
    justify-content: space-between
}


nav {
    text-align: center;
    background-color: #272727;
    padding: 5px 0px;
    position: sticky;
    top: 0;
}

.logo {
    color: white;
    font-size: 22px;
    letter-spacing: 2px;
}

.cont1{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 75px;
    justify-content: space-evenly;
}

.input {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    width: fit-content;
}

.error {
    display: none;
    color: #d90909;
}

#city {
    border: none;
    height: 25px;
    padding: 5px;
    font-size: 16px;
    outline: none;
}



#search {
    border: none;
    background-color: black;
    width: 30px;
    height: 25px;
    cursor: pointer;
    transition: 0.6s ease;
}

#search:hover {
    background: rgb(117, 117, 117);
}

.search {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100px;
    justify-content: space-evenly;
}

.unit-btns {
    display: none;
}

.unit-btn {
    padding: 1px 5px;
    background: none;
    border: 2px solid #272727;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.activeBtn {
    background-color: #272727;
    color: white;
}

.searchVector {
    width: 250px;
}

.pseudo{
    font-size: 14px;
    color: #272727;
    height: 70.1vh;
    text-align: center;
    display: none;
}

.container {
    display: none;
}

.upper {
    padding: 5px;
    color: white;
    background-color: #272727;
    height: 70px;
}

#date {
    padding-left: 3px;
}

#location {
    font-size: 30px;
    font-weight: bolder;
}

.center {
    height: 170px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #cfcfcf;
}

#icon {
    width: 100px;
}

.right {
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-evenly;
    font-size: 20px;
    padding: 8px 0px;
    font-size: 16px;
}

#weather-temp {
    font-size: 2em;
}

#weather-main {
    font-size: 2em;
    font-weight: 500;
}

.bottom {
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #272727;
    color: white;
    justify-content: space-evenly;
    align-items: center;
}

.span {
    width: 50%;
    padding-left: 5%;
}

.chart {
    width: 100%;
    margin: auto;
    padding: 5px;
}

#chartHeading{
    text-align: center;
    font-size: 25px;
    padding: 15px 0 15px 0;
    font-weight: lighter;
    color: #272727;
}

footer {
    text-align: center;
    background-color: #272727;
    color: white;
    padding: 5px;
    width: 100%;
    margin-top: 15px;
}

footer span {
    color: red;
}

footer a{
    color: white;
    border-bottom: 2px solid white;
    transition: 0.4s ease;
}

footer a:hover {
    color: rgb(201, 198, 198);
}

.active {
    display: block;
}

@media only screen and (min-width: 375px)
{
    .span{
        padding-left: 10%;
    }
}

@media only screen and (min-width: 700px)
{
    .wrapper{
        width: 60%;
        margin: auto;
    }
}


@media only screen and (min-width: 1024px)
{
    .wrapper{
        width: 50%;  
    }
}


