/* scrollbar starts here */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: royalblue;
}

body {
    width: 100%;
    height: 100vh;
    background: linear-gradient(#353839, black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title-2DSandbox {
    color: white;
    text-decoration: none;
    margin-left: 40px;
}

.Games {
    border: 1px solid orange;
    background: linear-gradient(royalblue, black);
    height: 900px;
    width: 160px;
    margin-left: 53rem;
    overflow-y: scroll;
}

.Games-title {
    color: white;
    margin-left: 34px;
    margin-top: 6px;
    font-family: sans-serif;
}