* {
    box-sizing: border-box;
    margin: 0;
    background-color: rgb(198, 202, 163);
}

.container {
    width: 80%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: space-around;
    flex-wrap: wrap;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

input {
    padding: 0.5rem;
    margin: 1rem;
}

button {
    padding: 0.5rem 2rem;
    margin: 0 2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    background-color: rgb(136, 241, 241);
}

#gen {
    width: 100%;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
}

#gol {
    border: 1px solid black;
    margin: 2rem;
}