body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #272142;
    background: #f9f7fe;
}

a {
    color: #11034e;
}

.weather-app {
    background-color: white;
    font-size: 20px;
    color: rgb(0, 0, 0);
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(49, 50, 51, 0.8);
    border-radius: 15px;
}

header {
    border-bottom: 1px solid #f9f7fe;
    padding: 0 0 30px 0;

}

.search-form-input {
    background-color: #e6e6e6;
    padding: 15px 20px;
    width: 78%;
    font-size: 16px;
    border: none;
    border-radius: 6px;

}

.search-form-button {
    background-color: #11034e;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 5px;
}

main {
    padding: 10px 0;
}

.weather-app-info {
    display: flex;
    justify-content: space-between;

}

.weather-app-city {
    margin-top: 20px;
    font-size: 38px;
    color: #272142;
    line-height: 48px;
    font-weight: 700;
}

.weather-app-details {
    font-size: 16px;
    color: #4c4c4e;
    margin-bottom: 20px;
    line-height: 20px;
}

.weather-app-details strong {
    color: rgba(235, 17, 144, 0.918);
}

.weather-app-icon {
    font-size: 44px;
    margin-top: 10px;

}

.weather-app-temperature-container {
    display: flex;
}

.weather-app-temperature {
    font-size: 60px;
    font-weight: bold;
    line-height: 70px;
    margin-right: 20px;
    margin-top: 10px;
}

.weather-app-unit {
    font-size: 22px;
    margin-top: 15px;
    color: #4c4c4e;
    margin-left: -20px;
}
.weather-app-forecast {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 600px;
    margin: 30px auto 0 auto;
}
.weather-app-forecast-date {
    text-align: center;
    color: rgba(39, 33, 51, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-app-forecast-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.weather-app-forecast-temperature {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: rgba(235, 17, 144, 0.918);
    display: flex;
    justify-content: center;
}
.weather-forecast-temperature {
    padding: 0 10px;

}
footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 12px;
    color: rgb(0, 0, 0, 0.6);
}