body {
    background-color: #dedede;
    font-family: "Roboto", sans-serif;
}
h1 {
    font-size: 40px;
}
a {
    color: #10374e;
}
#wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(60, 50, 100, 0.07);
    margin: 0 auto;
    padding: 30px;
    width: 580px;
}

header {
border-bottom: 1px solid #dedede;
padding-bottom: 25px;
}

.search-form-input {
    background-color: #dedede;
    border: none;
    border-radius: 6px;
    width: 74%;
    font-size: 16px;
    padding: 15px 20px;
}
.search-form-button {
    background-color: #10374e;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    color: white;
    width: 25%;
}
.search-form-button:hover {
    background-color: #066196;
}
main {
    position: relative;
    padding: 25px 0;
    display:grid;
    grid-template-columns: 50% 40%;
    justify-content: space-around;
 
  
}

.weather-app-temperature-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr;
    
    padding-top: 10px;
}
strong {
    color: #dd0b51;
}
#icon {
   height: 60px;
   
}
.weather-app-temperature {
    font-size: 85px;
}
.weather-app-unit {
    font-size: 25px;
    padding-top: 15px;
}
.forecast-wrapper {
    margin-top: 10px;
    margin-bottom: 25px;
    display:flex;
    justify-content: space-around;
}
.forecast-box {
    flex-direction: row;
}

.forecast-day { 
    padding-bottom: 5px;
    text-align: center;
}
.forecast-icon {
    display: block;
    margin: 0 auto;
    padding-bottom: 6px;
    width: 80%;
}
.forecast-temperatures {
    display: flex;
    padding-bottom: 10px;
    justify-content: space-evenly;
}
.forecast-temperature {
    color:#dd0b51;
}
footer {
    border-top: 1px solid #dedede;
    padding-top: 25px;
    text-align: center;
}