@charset "UTF-8";

:root {
    --corbase: #ffbb00;
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* cabeça */

header {
    background-color: var(--corbase);
    padding-top: 20px;
    padding-bottom: 20px;
}

header h1 {
    text-align: center;
}

/* corpo */

main {
    background-color: #fff4d7;
    padding: 20px;
}

section {
    display: block;
}

input {
    display: block;
    background-color: #fff4d7;
    border-width: 0px 0px 1px 0px;
    width: 300px;

    height: 20px;
    outline: 0px;

    padding-top: 10px;
    margin-bottom: 10px;
}

article {
    display: flex;
}

button.apagar {
    background-color: red;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    border: 1px solid black;
    margin: 10px 0px 0px 10px;
}

button.addlinha {
    background-color: var(--corbase);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    margin-top: 10px;

    color: white;
    font-size: 40px;
}

button:active {
    border: 3px solid black;
    color: black;
}

/* footer */

footer {
    background-color: var(--corbase);
    padding: 10px;
}

footer > p {
    text-align: center;
    font-weight: bold;
}

footer a {
    color: black;
    text-decoration: none;
}