body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 143px;
    pointer-events: none;
}

.overlay-image-o {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 300px;
    height: 143px;
    opacity: 1.0;
}

.overlay-image {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 300px;
    height: 143px;
    opacity: 0.7;
}

#toggleButton {
    position: absolute;
    top: 245px;
    left: 90px;
    padding: 10px 20px;
    background-color: #d8c452;
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#additionalInfo {
    position: absolute;
    top: 280px;
    left: 78px;
    width: 200px;
    padding: 10px;
    background-color: rgba(240, 240, 240, 0.7);
    border: 1px solid #ccc;
    margin-top: 10px;
    display: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-align: justify;
    border-radius: 5px;
}

.indent {
    margin-left: 10px;
}

.indent2 {
    margin-left: 20px;
}

.overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 360px;
    height: 30px;
    background-image: url('images/group.png');
    background-blend-mode: difference;
    filter: invert(1);
}