body {
    background-color: #f9f7fe;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    background-color: #fff;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.8);
    border-radius: 16px;
    padding: 30px;
}

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

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

.search-input:focus {
    outline: none;
    box-shadow: 0 0 5px lightblue;
}

.search-input::placeholder {
    color: #999;
}

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

main {
    padding: 30px 0;
}

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

p {
    color: #AAA;
    font-weight: 500;
    font-size: 15px;
}

p strong {
    color: #da4b4b;
}

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

.temperature-container {
    display: flex;
}
.current-temp-img {
    width: 88px;
    height: 88px;
    margin-top: 8px;
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
}

.current-temp-img:hover {
    box-shadow: 2px 5px 10px rgba(50, 92, 100, 0.1);
}

img {
    width: 100%;
    height: 100%;
}

.current-temperature {
    font-size: 88px;
    margin-left: 10px;
    font-weight: bold;
    line-height: 88px;
}

.current-temperature-unit {
    font-size: 24px;
    margin-top: 12px;
    
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    object-fit: contain;
}

.forecast-date {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
}

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



.forecast-temperatures {
    text-align: center;
    color: #da4b4b;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.forecast-temperatures .forecast-temp {
    padding: 0 10px;
}

.forecast-temperatures .forecast-temp.max {
    font-size: 18px;
    font-weight: bold;
}


footer {
    border-top: 1px solid #f9f7fe;
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

footer .footer_link, footer .footer_link:visited {
    color: lightblue;
    text-decoration: none;
}

footer .footer_link:hover {
    text-decoration: underline;
}