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

body {
    overflow: hidden;
    background: black;
    font-family: Helvetica, Arial, sans-serif;
}

#c {
    display: block;
}

#info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

#title {
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 32px;
    pointer-events: none;
}

#links {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: white;
    pointer-events: all;
}

#links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

#links a:hover {
    text-decoration: underline;
}

.credits {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-family: Arial, sans-serif;
    font-size: 12px;
    pointer-events: all;
}

.credits a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.credits a:hover {
    color: white;
}
