:root {
    --bgCol: rgb(22, 22, 22);
    --fgCol: rgb(65, 85, 196);
}

body {
    background-color: rgb(22, 22, 22);

}

h1,h2,h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:rgb(65, 85, 196)
}

div.navbar {
    float:right;
    border-radius: 10px;
    background-color: rgb(65, 85, 196);
    margin: 10px;
}

a.navbar,p.navsplit {
    color: rgb(22, 22, 22);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
}

.gamesLib {
    margin: auto;
    width: 85.9%;
}

.libItem {
    background-color: var(--fgCol);
    border-radius: 20px;
    float: left;
    padding: 10px;
    margin: 10px;
    display: inline;
    width: 300px;
    text-align: center;
}

.libItemThumb {
    border-radius: 15px;
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.libItemLink {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--bgCol);
}

.warningIcon {
    color: red;
    font-weight: lighter;
}