body {
    font-family: Arial, sans-serif;
    text-align: center;
		text-color: #004AA;
    padding: 20px;
		background-color: #FF5757
}

#dice-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.die {
    min-width: 100px; /* Minimum width */
    min-height: 100px; /* Minimum height */
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Add some padding */
    font-size: 16px; /* Adjust font size if necessary */
		background-color: #FFDE59;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    margin: 10px;
    word-wrap: break-word; /* Ensure long words don't overflow */
		color: #004AA0;
}

.die-label {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center; /* Center align the label */
}

.die-face {
    text-align: center; /* Center align the die face */
}
#roll-button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}