body {
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 2.5 em;
}
p {
    font-size: 1.2 em;
}
button {
    width: 40px; 
    height: 40px; 
    border: none;
    border-radius: 50%;
    background: #000000; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    margin:10px;
}
button .fa-arrow-right {
    margin:10px;
    font-size: 18px;
    color: #fff; 
}
button:hover {
    background: #333333; 
}
input[type="text"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}
form{
    display:flex
}
.default-background {
    background-image: url(blue-cloudy-daylight-background-weather-design_33099-512.avif);
    background-repeat: no repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    justify-content: center;
}
.main-content {
    display: flex;
    flex-direction: column;
    gap: 3em;
    text-align: center;
    color: black;
    padding: 0 20px;
    margin-bottom: 1em;
}
.response-top {
    margin-left: 5em;
    margin-bottom: 2em;
    display: flex;
    gap: 3em;
    font-size: 3em;
}
.response {
    padding: 2em;
    font-size: 1.5em;
}
.top-section {
    display: flex;
    flex-direction: column;
    
    margin-top: 5rem;
}
.top-section h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
}
.top-section p {
    font-size: 1.5em;
    margin-bottom: 1em;
}
.forms-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.city-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}