body{
    font-family: Helvetica, sans-serif;
    background-color:  #EDEBD7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
} 

.weatherform{
    margin: 20px;
}
.city-input{
    border: 2px solid #1b4b7ba1;
    background-color: #E2E8CE;
    margin: 10px;
    width: 300px;
    padding: 10px;
    font-size: 1.2rem ;
    border-radius: 30px;
    flex-shrink:2;
}
.weather-button{
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2 rem;
    background-color:  #f5a524;
    border: none;
}

button:hover{
    background-color: #f79711;
}

.card{
    padding: 50px;
    background-color: #63B0CD;
    border: 1px solid #478da7;
    border-radius: 10px;
    box-shadow: 6px 6px 0px #f79711;
    min-width: 300px;
    display: flex;
    flex-direction: column; 
    align-items: center;
}
/* #9c9b9b */

h1{
    margin: 0px 0px 20px 0px;
    font-size: 3rem;
    font-weight: 100;
}

p{
    font-size: 1.1rem;
    margin: 6px 0px;
}

.temp-display{
    font-size: 2rem;
    font-weight: 100;
}

.description-display, .humidity-display, .sunset-display{
    font-size: 1.5rem;
}

.image-weather{
    width: 100px;
    margin: 10px 0px;
}

.error-display{
    font-weight: 700;
    font-size: 1.5 rem;
}

.nightmode-button{
    border-radius: 50px;
    width: 40px;
    height: 40px;
    border-style: none;
    background-color: #f5a524;
    position: relative;
    left: -280px;
    top: 75px;
}

.nightmode-button:hover{
    background-color: #f79711;
}

.home-button{
    text-decoration: none;
    font-size: 1rem;
    color: black;
    background-color: #f5a524;
    position: absolute;
    bottom: 20px;
    padding: 5px 10px;
    border-radius: 20px;
    border-style: none;
}
.home-button:hover{
    background-color: #f79711;
}
a{
    text-decoration: none;
    color: black;
}
/* night mode styles */
.night-mode-card{
    background-color: rgb(58, 58, 58);
    color: white;
    box-shadow: 6px 6px 0px #63B0CD;
    border: 2px solid grey;
}

.night-mode-button{
    background-color: #63B0CD;
}

.night-mode-button:hover{
    background-color: #478da7;
}

.night-mode-body{
    background-color: rgb(30, 30, 30);
}

.night-mode-city-input{
    background-color: #86897c;
    color: white;
}

.nightmode-image{
    width: 30px;
    height: auto;
    padding: 0;
    margin-top: 3px;
}
/* 
EDEBD7
E3B23C
423E37
63B0CD
9999C3
 */