body {
    color: white;
    background-image: url("../assets/gifs/backgrounds/bg.gif");
    cursor: url("../assets/cursors/cursor.png") 10 10, pointer;
}

a {
    cursor: url("../assets/cursors/open.png") 10 10, pointer;
}

.content {
    display: flex;
    padding: 10px;
    justify-content: center;
    height: 700px;

}

.main {
    width: 35%;
    background-color: black;
    text-align: center;
    padding: 10px 10px;
    border: 1px;
    border-style: solid;
    border-radius: 2px;
    overflow-y: scroll;
}

.other-content {
    width: 15%;
    background-color: black;
    margin-left: 10px;
    text-align: center;
    padding: 10px;
    border: 1px;
    border-style: solid;
    border-radius: 2px;
    height: auto;
}

hr {
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

#logo {
    width: 15%;
}

#navbar {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

#navbar a {
    padding: 17px;
    display: block;
    text-decoration: none;
    color: white;
}
#navbar a:hover {
    color: grey;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: grey; 
}

/* Container holding all game cards */
/* Container holding all game cards */


