body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
}

a {
    color: cornflowerblue;
    text-decoration: none;
}

.weather-app-city {
    margin: 0;
    font-size: 38px;
    line-height: 48px;
}

.weather-app-details {
    margin: 0;
    font-size: 18px;
    line-height: 20px;
    color: #777;
}

.weather-app-details strong {
    color :cadetblue
}

.weather-app-container {
    display: flex;
    align-items: center;
}

.weather-app-temperature {
    font-size: 84px;
    margin-left: 20px;
    font-weight: bold;
}

.weather-app-icon {
    font-size: 40px;
    margin-top: 20px;
}
.weather-app-unit {
    font-size: 16px;
    margin-top: 30px;
}

.container {
    width: 600px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-form-input {
    width: calc(100% - 120px);
    padding: 10px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-right: 10px;
}
.search-form-button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    padding: 10px;
    border-radius: 8px;
    background-color: cornflowerblue;
    color: white;
    cursor: pointer;
}

main {
    padding: 30px 0;
}

.weather-app-data {
    display: flex;
    justify-content: space-between;
}
.weather-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.weather-forecast-date {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.weather-forecast-icon {
    width: 90px;
    height: 90px;
}

.weather-forecast-temperatures {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}