* {
    font-family: "Comic Sans MS", cursive;
}

body {
    background-image: url("/framework/images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;   
}

button {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schattenstil */
    border-radius: 8px;
    /* Weitere Stile für den Button hier */
}

button:hover {
    /*transform: scale(1.05);*/ /* Vergrößerungseffekt */
    background-color: #ff6600; /* Neue Farbe beim Hovern (Orange) */
    /* Weitere Stile für den Button im Hover-Zustand hier */
}

.main_page_content {
    max-width: 40%;
}

.top_bar button {
    display: flex;
    aspect-ratio: auto;
    flex: 1;
}

@media screen and (max-width: 999px) {
    body {
        flex-direction: column;
        font-size: 36px;
    }

    button {
        font-size: 36px;
    }

    .main_page_content {
        max-width: 100%;
    }

    .top_bar.top_bar button {
        aspect-ratio: 1/1;
        flex: 0;
        height: auto
    }
    .top_bar button div {
        display: none;
    }

    .top_bar button span {
        font-size: 60px;
    }
}

.hide, div .hide.hide {
    display: none;
}

.highlight {
    border-color: red;
}

.yes {
    color: green;
}

.no {
    color: red;
}

.row {
    display: flex;
    flex-direction: row;
}
