body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
    color: #000000;
}

h1 {
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

button {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border: 2px solid #000000;
    border-radius: 0; /* Square edges for a sharper look */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
}

button:hover {
    background-color: #ffffff;
    color: #000000;
}

#lottoNumbers ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

#lottoNumbers li {
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #000000;
}
