/* Universal */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Body */
header{
    height: 10%;
    width: 100%;
    font-weight: bold;
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
}
main{
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/* Weather */
.weather{
    height: 75%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 30px;
    border: none;
    border-radius: 5px;
    box-shadow:1px 1px 10px 5px rgba(0, 0, 0, 0.219) ;
}
.weather h2{
    height: 10%;
    display: flex;
    align-items: center;
}
#container{
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
}
#container input{
    width: 65%;
    border: none;
    box-shadow:1px 1px 10px 5px rgba(0, 0, 0, 0.219) ;
    padding: 5px 20px;
    border-radius: 5px;
    outline: none;
}
#container button{
    width: 30%;
    background-color: white;
    border: none;
    border-radius: 5px;
    box-shadow:1px 1px 10px 5px rgba(0, 0, 0, 0.219) ;
    outline: none;
    cursor: pointer;
}

#output{
    width: 100%;
    overflow: scroll;
    overflow-x: hidden;
    padding: 20px 15px;
    height: 70%;
    background-color: black;
    box-shadow:1px 1px 10px 5px rgba(0, 0, 0, 0.219) ;
    color: lightgreen;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Courier New', Courier, monospace;
    cursor: not-allowed;
}
footer{
    height: 5%;
    width: 100%;
    background-color: lightgreen;
    display: flex;
    align-items: center;
    justify-content: center;
}