body {
    font-family: Arial, sans-serif;
    text-align: center;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#card {
    display: flex;
    width: 300px;
    height: 200px;
    margin: 20px -10px auto;
    padding: 10px;
    border: 1px solid #ddd;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin: auto;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5em;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

#next-button {
    margin-top: 80px;
    height: 50px;
    width: 300px;
}

#header {
    font-size: 2.2em;
    justify-content: center;
    font-weight: bold;
}

#header h1 {
    margin: 0;
}

#footer {
    margin-top: 10px;
    font-size: 0.7em;
}

#content {
    text-align: start;
    width: 80vw;
    height: calc(100vh - 120px);
    overflow-x: hidden;
}

button {
    height: 50px;
    width: 200px;
    font-size: 1.6em;
}

button:hover {
    background-color: #eeeeee;
}

#consent-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    color: black;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

#consent-banner button {
    margin: 5px;
    padding: 5px 10px;
}

#accept:hover {
    background-color: #00b10665;
}

#backButton {
    margin-bottom: 20px;
}