/* Globales CSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url("fonts/SpaceGrotesk-Regular.ttf");
}

h1 {
    font-size: 28px;
    font-family: SpaceGrotesk;
    font-weight: 400;
}

svg {
    height: auto;
    width: 40px;
}

body {
    font-family: SpaceGrotesk;
    background-color: #f4f4f4;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

section {
    display: flex;
}

#rightcontainer {
    width: 100%;
    height: 100vh;
    background-color: #f4f4f4;
}

#canvas-container {
    width: 100%;
    height: 100%;
}

/* Media Query für mobile Geräte */
@media (max-width: 768px) {
    svg {
        height: 50px;  /* SVG Höhe auf 50 für mobile Geräte */
    }
}
