body {
    margin: 0;
    overflow: hidden;
    background: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

canvas {
    display: block;
    position: absolute;
    bottom: 0px;
}

#download-section img {
    width: 50px;
    height: 50px;
}

#download-section {
    position: absolute;
    top: calc(50% - 100px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: fit-content;
    display: flex; 
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}

#download-button {
    color: white;
    font-size: 22px;
    font-weight: 300;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    display: inline-block;
    margin: 10px;
    bottom: 0px;
}

#download-button:hover {
    background: rgba(255, 255, 255, 0.15);
    bottom: 7px;
}

#download-button img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

#other-platforms, #other-platforms a {
    color: gray;
    text-align: center;
}

#unsupported-platform {
    display: none;
    color: #bbb;
    text-align: center;
    padding: 0px 15px;
}

#cta {
    color: #bbb;
    text-align: center;
}

#cta h2 {
    color: white;
}
#logo {
    text-align: center;
    margin-top: 15px;
}