.rightcontrols {
    position:absolute;
    bottom:0;
    right:0;
    z-index:2;
    margin-bottom: 5px;
    margin-right: 5px;
}
.arrowcontrols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.arrowtext {
    text-align: end;
}
.rightcontrols button {
    font-size: 200%
}
#ArrowUp {
    grid-column: 2/3;
    grid-row: 1/2;
}
#ArrowLeft {
    grid-column: 1/2;
    grid-row: 2/3;
}
#ArrowDown {
    grid-column: 2/3;
    grid-row: 2/3;
}
#ArrowRight {
    grid-column: 3/4;
    grid-row: 2/3;
}
.leftcontrols {
    position:absolute;
    bottom:0;
    left:0;
    z-index:2;
    margin-bottom: 5px;
    margin-left: 5px;
}
.wasdcontrols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.leftcontrols button {
    font-size: 200%
}
#KeyW {
    grid-column: 2/3;
    grid-row: 1/2;
}
#KeyA {
    grid-column: 1/2;
    grid-row: 2/3;
}
#KeyS {
    grid-column: 2/3;
    grid-row: 2/3;
}
#KeyD {
    grid-column: 3/4;
    grid-row: 2/3;
}
.favs {
    position: absolute;
    top: 0px;
    left: 50%;
    justify-content: center;
}
.favs a {
    cursor: pointer;
    color: white;
    text-decoration: none;
}
#fullscreenToggle {
    cursor: pointer;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 2em;
}
#shareLink {
    cursor: pointer;
    z-index: 2;
    position: absolute;
    top: 0;
    right: left;
    color: white;
    font-size: 2em;
}
