body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.affirmation-display {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.overlay {
    background-color: rgba(0, 100, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.affirmation-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Baloo', sans-serif;
    color: white;
    text-align: center;
    padding: 0 20px;
    font-size: 2em;
}

.end-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.end-screen button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1em;
}
