*, *::before, *::after{
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;
}

body{
    padding: 0;
    margin: 0;
    background: linear-gradient(to right, rgb(127, 15, 219), green) ;
}

#counterGrid{
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: 100vh;
    grid-template-columns: repeat(2, 200px);
    grid-template-rows: minmax(120px, auto) repeat(1, 100px);
}

button {
    cursor: pointer;
    font-size: 2rem;
    border: 1px solid white;
    outline: none;
    background-color: rgba(255, 255, 255, .75);
}

button:hover{
    background-color: rgba(255, 255, 255, .9);
}

#output{
    grid-column: 1 / -1;
    background-color: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    pad: 10px;
    word-wrap: break-word;
    word-break: break-all;
    color: white;
    font-size: 2.5rem;
    padding-right: 10px;
    padding-left: 10px;
}

