body {
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto', sans-serif; 
}

header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: black;
}

.containerHeader {
    /* background-color: black; */
    width: 900px; 
    align-items: center;
    display: flex;
}

.containerBotoes {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.linkBotao {
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    font-weight: bold;
    background-color: #00B0AD;
    border-radius: 15px;
    color: white;
    transition: all .3s ease;
}

.linkBotao:hover {
    background-color: black;
    border-radius: 10px;
    color: white;    
}

.logo {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: white;
    background-color: white;
    height: 100%;
}

.titulo {
    width: 800px;
    /* background-color: aqua; */
    align-items: center;
    justify-content: center;
    display: flex;
    flex: 4;
    color: white;
    font-weight: bold;
}

.container {
    background-color: gainsboro;
    width: 800px;
    margin: 40px auto;
    border: 1px solid black;
    padding: 10px;
}

.container p {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.regra {
    font-size: 16px;
    margin-left: 10px;
}

td, th{
    border-bottom: 1px solid black;
}

td {
    text-align: center;
    height: 30px;
}

.votos {
    font-weight: bold;
    color: rgb(139, 5, 5);
    border-radius: 2px;
    border: 1px solid rgb(139, 5, 5);
    padding: 3px;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    background-color: white;
}

.campeao {
    font-size: 18px;
    font-weight: bold;
}

select {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

table {
    margin: 30px auto;
    padding: 5px;
    border: 1px solid black;
}

.obs {
    font-size: 16px;
    display: block;
    text-align: center;
    margin-bottom: 2px;
}

textarea {
    width: 500px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    resize: none;
}

input[type=submit] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}