* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: blueviolet;
    background-image: linear-gradient(to up, blue, blueviolet);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    max-width: 500px;
    margin: 20px auto;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
}

h1 {
    color: blueviolet;
    text-align: center;
    margin-bottom: 10px;
}

input[type=number] {
    width: 100%;
    background-color: lightgray;
    border: none;
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

div#botoes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

button {
    background-color: blueviolet;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
}