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

body {
    background-color:#242424;
}

.container {
    border-radius: 70px;
    max-width: 1145px;
    height: 640px;
    margin: 16px auto;
    background-color: #333333;
}

h1 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-family: 'Kanit', sans-serif;
    text-align: center;
    margin: 32px;
    height: 65px;
    color: white;
}

.logo {
    background-color: #D9D9D9;
    width: 100%;
    height: 165px;
    border-radius: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container header img {
    border-radius: 150px;
    max-width: 250px;
    height: 250px;
}

form input {
    border-radius: 15px;
    width: 300px;
    height: 45px;
    font-size: 24px;
    background-color: #808080;
    color: black;
    border: none;
}

.inputs1 {
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
}

.inputs2 {
    margin-top: 50px;
    display: grid;
    place-items: center;
}

input::placeholder {
    font-family: 'Rethink Sans', sans-serif;
    color: white;
}

form button {
    font-family: 'Rethink Sans', sans-serif;
    border-radius: 25px;
    width: 200px;
    height: 45px;
    font-size: 24px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 40px;
}

.botoes {
    display: flex;
    justify-content: space-around;
}

.tabela {
    font-family: 'Rethink Sans', sans-serif;
    background-color: #333333;
    margin-top: 100px;
    border-radius: 25px;
    display: grid;
    place-items: center;
}

table {
    width: 100%;
}

table tr {
    color: #757575;
    font-size: 24px;
    justify-content: space-around;
}

table td {
    padding: 16px;
    font-size: 18px;
    justify-content: space-around;
    text-align:center
}

.rodape {
    background-color: #D9D9D9;
    border-radius: 50px;
    display: grid;
    place-items: center;
}

.rodape footer {
    font-size: 16px;
    padding: 5px;
    display: grid;
    place-items: center;
}


