body {
    background-color: blue;
}

main {
    width: 85%;
    margin: auto;
}

h1 {
    text-shadow: 2px 2px 1px red;
    font-size: 56px;
    margin-bottom: 0px;
}

#jackpot {
    color: black;
    text-shadow: 1px 1px gray;
}

#cash {
    color: white;
}

h3 {
    text-decoration: underline;
}

p {
    text-align: justify;
}

#left {
    float: left;
    width: 320px;
    height: 100%;
    text-align: right;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

#right {
    padding-left: 30px;
    float: left;
}

ul {
    padding: 0px;
}

li {
    list-style-type: none;
}

#numbers {
    width: 400px;
}

.button {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
}

.button:hover {
    background-color: darkgray;
}

.action {
    margin-top: 10px;
    width: 180px;
    height: 30px;
    display: block;
    border-radius: 4px;
    cursor: pointer;
}

#play {
    cursor: default;
}

#random-numbers:hover, #random-pb:hover {
    background-color: darkgray;
}

#reset {
    background-color: darkgray;
}

#reset:hover {
    background-color: darkred;
    color: white;
}

#random-numbers {
    margin-top: 32px;
}

#lotto-numbers {
    color: lime;
    display: inline-block;
    text-shadow: 1px 1px black;
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 0px;
}

#pb-number {
    color: red;
    display: inline;
    text-shadow: 1px 1px white;
    font-size: 32px;
}

#reward {
    display: block;
    color: white;
    font-size: 18px;
    text-shadow: 1px 1px black;
}