/* Reset do documento */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 300px;
}

.box-form{
    width: 100%;
    height: 50vh;
}

.form-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    flex-direction: column;
}

.form-wrap  input[type=text]{
    width: 100%;
    max-width: 600px;
    height: 50px;
    border-radius: 5px;
    padding: 5px 0 5px 15px;
}

.form-wrap h2{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-wrap input[type=submit],button{
    margin-top: 20px;
    text-align: center;
    padding: 15px 30px;
    cursor: pointer;
    color: white;
    background-color: tomato;
    border: 0;
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.form-wrap input[type=submit]:hover{
    background-color: rgb(172, 64, 45);
}

.box-frases{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    height: 120px;
    background-color: tomato;
}

table{
    margin: 0 auto;
    width: 100%;
}

table thead{
    background-color: tomato;
    color: white;
}

table thead th{
    font-size: 22px;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left;
}

#lista tr td{
    padding: 10px 20px;
    border-bottom: 1px solid black;
}

#new{
    display: none;
    margin-bottom: 20px;
}