*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(26, 34, 58);
    font-family: 'Lato', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
main{
    padding: 2rem;
    background-color: rgb(36, 45, 73);
    border-radius: 10px;
    max-width: 800px;
}
main h1{
    font-size: 3rem;
    margin-bottom: 2rem;
}

#searchForm{
    display: flex;
}
#searchForm form{
    display: flex;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}
#searchForm input{
    flex: 1;
    height: 1.5rem;
    border-radius: 4px;
    border: none;
    padding: 0 10px;
    font-size: 16px;
}
#searchForm button{
    background-color: #FFA500;
    color: #000;
    border: none;
    padding: 0rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}
main #tempoInfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main #tempoInfo .tempoDados h2{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0.2rem;
}
main #tempoInfo .tempoDados span{
    font-size: 3rem;
    font-weight: bold;
}