    body {
            background-image: url("https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1200&q=80");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            font-family:  "Love Ya Like A Sister", cursive;

        }
                   


a {
    color: #d22780;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #724060;
    transition: width 0.3s ease;
}

a:hover {
    color: #724060;
}

a:hover::after {
    width: 100%;
}

.weather-app {
    background :#e9e3d2;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(34, 61, 48, 0.08);
    border-radius: 20px;
    padding: 30px;
}

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

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

.search-form-button {
    background: #055A6E;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 6px;
    color: white;
}
.search-form-button:hover{
    background: #d22780;
       
        color: #161817;
        cursor: pointer;
              transform: scale(1.05);
              transition: all 0.3s ease;
     }


main {
    padding: 30px 0;
}

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

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

.weather-app-details {
    font-size: 16px;
    color: #161817;
    line-height: 24px;
    font-weight: 500;
}

.weather-app-details strong {
    color: #015D7A;
}

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

.weather-app-icon {
    width: 88px;
    height: 88px;
}

.weather-app-temperature {
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
    color:#015D7A;

}

.weather-app-unit {
    margin-top: 6px;
    font-size: 28px;
}
.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.weather-forecast-date {
    text-align: center;
    color:#004445;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
    text-align: center;
    color: #015D7A;
    margin-top: 10px;
    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: 14px;
    color: rgba(0, 0, 0, 0.6);
}