

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

body {
    background-color: #222222;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding: 2rem;
    max-width: 800px;
    background-color: #333;
    border-radius: 10px;
}

main > h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* main #search-form {
   

} */

main #search-form form {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

main #search-form input {
    flex: 1;
    height: 32px;
    border-radius: 5px;
    border: none;
    padding: 0 10px;
    font-size: 16px;
}

main #search-form button {
    background-color: green;
    color: white;
    border: none;
    padding: 0rem 1rem;
    border-radius: 5px;
}

main #tempo-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main #tempo-info .tempo-dados h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 0.2rem;
}

main #tempo-info .tempo-dados span {
    font-size: 3rem;
    font-weight: bold;
}

