* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    padding-top: 100px;
    background-color: #E7E7E7;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

header img {
    height: 36px;
    margin-right: 16px;
}

header h1 {
    font-size: 40px;
    font-weight: bold;
    font-style: normal;
    margin: 0 auto;
    align-content: center;
}

.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    align-content: center;
    border-radius: 9px;
    border-width: 3px;
    border-style: solid;
}

form {
    margin: 0 auto;
    display: flex;
    max-width: 640px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 56px;
}

form button {
    background-color: #009432;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 8px;
}

form input {
    font-size: 24px;
    background-color: #fff;
    border: none;
    border-bottom: 2px solid black;
    padding: 8px;
}

table {
    width: 100%;
    
}

table th {
    border-bottom: 2px solid black;
    padding: 16px;
    font-size: 24px;
    font-weight: bold;
}

table td {
    padding: 16px 0;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

table td img {
    height: 30px;
}

.resultado {
    padding: 8px;
    font-weight: bold;
    color: #fff;
    background-color: black;
    border-radius: 3px;
}

.aprovado {
    background-color: #009432;
}

.reprovado {
    background-color: red;
}

@media screen and (max-width: 750px) {
    header h1 {
        font-size: 30px;
    }
    form button {
        margin-right: 7px;
    }
    form input {
        font-size: 20px;
        margin-left: 4px;
    }
}