body {
    background-color:#f2f5f7 ;
    font-family: "Roboto Condensed", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.weather-app {
    background: #0d0d47;
    background: linear-gradient(90deg, rgba(13, 13, 71, 1) 0%, rgba(9, 9, 121, 1) 49%, rgba(0, 183, 255, 1) 100%);
    width: 600px;
    max-width: 800px;
    max-height: 100vh;
    margin-top: 40px;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 20px;
}

.search-form-input {
    border-radius: 4px;
    background: #f2f5f7;
    opacity: 50;
    border: none;
    font-size: 16px;
    width: 70%;
    padding: 13px;
    transition: 150ms;

}

.search-form-input ::placeholder {
    color:#6781ab;
    opacity: 1;
}

.search-form-input :hover {
    border-color: #7c8ba3;
     
}
.search-form-button {
    background-color: #6781ab;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    width: 20%;
    padding: 13px;
    margin-left: 10px;
    color: #f2f5f7;
    opacity: 50;

}

h1 {
    padding-bottom: 10px;
    padding-top: 20px;
    margin-left: 5px;
    font-size: 45px;
    color: white;
}

#forecast {
    text-align: center;
    font-size: 20px;
    color: white;
    margin-top: -150px;
}

.weather-forecast-day {
    color: white;
    background-color: rgba(124, 139, 163, 0.4);
    padding: 10px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
}
.weather-forecast-icon {
    size: 25px;
}


.summary {
    font-size: 17px;
    line-height: 25px;
    color: white;

}

.wind-speed {
    font-size: 17px;
    line-height: 25px;
    color: white;
}

.big-temp{
    font-size: 70px;
    font-weight: bold;
    padding: 0px;
    position: relative;
    left: 400px;
    bottom: 20px;
    color: white;
    
}

#symbol{
    font-size: 120px;
    position: relative;
    bottom: 120px;
    color: white;

}

.brief-info {
    position: relative;
    bottom: 200px;
    right: -130px;
    line-height: 1.5;
    color: white;
}

.footer {
    margin-top: auto;
    text-align: center;
    padding: 15px;
    color: #333;

}