body {
    background-color: rgb(255, 210, 231);
    font-family: 'Crafty Girls', cursive;
}

a {
    text-decoration: none;
    color: #f587d4;
}

.weather-app {
    padding: 50px 80px 50px 80px;
    border-radius: 20px;
    max-width: 600px;
    margin: 105px auto;
    border: 3px solid rgba(8, 3, 3, 0.1);
    box-shadow: 30px 30px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(163, 161, 161, 0.9);
    background-blend-mode: multiply;
}


h1 {
    position: relative;
}

img {
    position: relative;
}

p {
    position: relative;
}

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

.search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
}

.search-form-input {
    width: 800%;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 20px;
    background-color: #f9f7fe;
    font-family: 'Crafty Girls', cursive;
}

.search-form-button {
    padding: 15px 50px;
    background-color: #f587d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin-left: 20px;
    font-family: 'Crafty Girls', cursive;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    position: relative;
}

main {
    padding: 20px 0 20px 0;
}

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

.weather-app-city {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin: 0;
    color: #f1d1e5;
}

.weather-app-details {
    font-size: 20px;
    line-height: 28px;
    margin: 5px 0;
    color: #f1d1e5;
    font-weight: 600;
}

.weather-app-details strong {
    position: relative;
    color: #f74cc3;
}

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

.weather-app-temperature {
    font-size: 50px;
    font-weight: bold;
    color: #f1d1e5;
}

.weather-app-unit {
    font-size: 30px;
    margin-top: 10px;
    color: #f1d1e5;
}

.weather-forecast-date {
    text-align: center;
    color:#f1d1e5;
    font-weight: bold;
}

.weather-forecast-temperatures {
    color:#f1d1e5;
    display: flex;
    justify-content: center;
}

.weather-forecast-temperature {
    padding: 0 10px;
}

.weather-forecast-icon {
    width: 48px;
    height: 48px;
    margin: 8px auto;
}

.weather-app-icon {
    display: flex;
    margin-top: 10px;

}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f9f7fe;
}

.weather-forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.weather-forecast-temp-max {
    font-weight: bold;
    padding-right: 5px;
    color: #f74cc3;
}

.weather-forecast-temp-min {
    opacity: 0.8;
    padding-left: 5px;
}

footer {
    border-top: 1px solid #f9f7fe;
    padding: 20px 0 0 0;
    text-align: center;
    font-size: 13px;
    color: #f1d1e5;
    font-weight: 600;
}