* {
    font-family: "Roboto", Arial, sans-serif;
    box-sizing: border-box;
}
body {
    margin:0;
    padding:0;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
input#ticketSize {
    text-align: center;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 5px;
}
#result {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
.game span.number {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    font-size:16px;
    color:white;
    background-color: #3653a4;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    margin: 0 5px;
    font-weight: bold;
}
.game span.number.powerball {
    background-color: #6a7884;
}
#btn-generateTicket {
    background-color: #3653a4;
    height: 32px;
    border-radius: 16px;
    color:white;
    border:0;
    width: 200px;
    font-weight: bold;
    font-size: 16px;
}
#btn-generateTicket:disabled {
    background-color: #cccccc;
}
@media all and (max-width:480px){
    .game td {
        padding-bottom: 16px;
    }
}