/* Set the background color and ensure the content is centered */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #00AC6B; /* background */
    color: #E7003E; /* text color */
}

.centered-text {
    font-size: 2em;
    font-weight: bold;
}
