body {
    background-color: #c5e3bf;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text {
    font-size: 24px;
    text-align: left;
    padding: 10px;
}

.dice {
    display: flex;
    justify-content: center;
}

.petition-button {
    text-align: right;
    padding: 50px;
}

img {
    width: 200px; /* Adjust as necessary */
}

button {
    background-color: transparent;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Slight grey background on hover for visual feedback */
}
