@charset "UTF-8";

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

body, html{
    font-family: "Poppins", sans-serif;
}

h1{
    margin-top: 20px;
    margin-bottom: 35px;
    margin-left: 20px;
    color: #0E4535;
    text-align: center;
}

main{
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}

input[type="text"]{
    width: 300px;
    margin-right: -5px;
    height: 30px;
    border: 2px solid #187358;
    border-radius: 15px 0px 0px 15px;
    padding-left: 10px;
}

button[type="submit"]{
    width: 150px;
    background-color: #187358;
    border: none;
    height: 30px;
    border-radius: 0px 15px 15px 0px;
    color: white;
    cursor: pointer;
}

.tabela-responsiva {
    width: 93dvw;
    overflow-x: auto; 
    margin-top: 20px;
}

table {
    width: 95%;
    border-collapse: collapse;
    max-width: 650px;
    margin: auto;
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
}

table a{
    color: #2A6F5B;
    font-weight: bold;
}

table a:hover{
    color: #29C496;
}

tr:nth-child(even){
    background-color: lightgray;
}

section{
    margin-top: 20px;
}

section a, section span{
    margin-right: 10px;
    color: #2A6F5B;
}

main p{
    margin-top: 20px;
    margin-bottom: 50px;
}

a{
    text-decoration: none;
}

a:hover{
    color: #29C496;
    text-decoration: underline;
}

p > a{
    color: #29C496;
}

p > a:hover{
    color: #32EDB5;
}

footer{
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #0E4535;
    height: 35px;
    color: white;
}