body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black;
}


.logos-container {
    position: absolute;

    bottom: 20px;
    left: 50%;










    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 420px; /* Adjust to fit both logos */
    z-index: 10;
}

.logos-container a {
    margin: 0 10px;
}










.fullscreen-btn-container {
    position: absolute;
    top: 20px;
    left: 20px;

    z-index: 15; /* Sæt højere z-index end matrix */
}

.fullscreen-btn-container button {
    background: none;
    border: none;
    cursor: pointer;
}

.fullscreen-btn-container svg {
    width: 32px;
    height: 32px;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Lavere z-index end knappen */
}