* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: rgba(25, 135, 178, 0.551);
    height: 100vh;
}

.all_data {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.main_header_text {
    display: flex;
    flex-direction: row;
    padding-top: 60px;
}

.main_header_text input, button{
    padding: 10px 30px;
    font: italic 20px Georgia;
    background-color: rgba(255, 255, 255, 0.39);
    border-radius: 35px 0px 35px 0px;
    border-bottom: 5px solid rgba(27, 97, 167, 0.891);
    outline: none;
}

.main_header_text input:hover, button:hover {
    background-color: rgba(25, 135, 178, 0.551);
}

.main_city_name, .main_weather_forecast, .main_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font: italic bold 25px/50px Georgia;
    padding-top: 30px;
    color: #1b1b1bef;
    text-shadow: 3px 3px 20px #8f1414;
}

body .main_footer {
    display: flex;
    justify-content: center;
    justify-items: flex-end;
    font-size: 20px;
}

