@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/wecare.jpg') no-repeat center center; 
    background-size: cover;
    transition: filter 0.3s ease;
    z-index: -1;
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    position: relative;
    text-align: center;
    z-index: 1;
}

.choice-button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 40px; 
    color: white;
}

#yesButton {
    background-color: green;
}

#noButton {
    background-color: red;
}

.blur-background {
    filter: blur(5px);
}

#message {
    color: white;
    font-size: 48px; 
}
