body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f9f9f9;
}
.accessibility-button {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 20px;
font-size: 18px;
font-weight: bold;
color: #ffffff;
background-color: #000000;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}
.accessibility-button:hover {
background-color: #333333;
}
.button-icon {
width: 24px;
height: 24px;
}