html{
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;

    display: grid;
    place-items: center;

    background-color: black;
}

object{
    width: 800px;
    height: 600px;
}

.credits{
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    width: 200px;
    position: absolute;
    top: 10px;
    left: calc(50% - 100px);
}

.credits a{
    color: orange;
}