* {
    font-family: system-ui;
    font-size:16px;
}
small {
    font-size: 12px;
}
h1 {
    padding:4px 48px 4px 6px;
    font-size:20px;
    color:white;
    margin:0px 0px 0px 0px;
    background: linear-gradient(
        225deg,
        transparent,
        transparent 25px,
        #333333 25px
);
}
h2 {
    margin: 0px;
}
html {
    background-image: url("img/diamonds.png");
    display: flex;
    justify-content: center;
    align-items: center;
}
section {
    margin:6px;
    min-width: 0;
}
.row {
    display:flex;
}
.rowstretch * {
	flex-grow:4;
}


body {
    min-width: 600px;
    width: 50vw;
}
footer {
    padding:6px;
    background-color:rgb(200, 200, 200);
}
main {
    padding:6px;
    background:repeating-linear-gradient(
        45deg,
        rgb(200, 200, 200),
        rgb(200, 200, 200) 15px,
        rgb(220, 220, 220) 15px,
        rgb(220, 220, 220) 30px
    );
	box-shadow: 5px 5px 5px rgb(0, 0, 0, 1);
}
.box {
    padding:6px;
    border:outset;
    border-width:1px;
    background-image:linear-gradient(
        rgb(240, 240, 240),
        rgb(255,255,255) 200px
    );
	box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.3);
}

.centered {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}



.horizontalscroll {
    width:100%;
    overflow:hidden;
    overflow-x:scroll;
    white-space: nowrap;
    display:flex;

}
.thumbnail {
    border:1px;
    border-style:inset;
}
.gamecard {
    padding:6px;
    display:inline-block;
    /*border:solid 1px;*/
    white-space: wrap;
}
.gamecard a {
    text-decoration:none;
}





nav {
    display: flex;
}
nav .navbarbtn, .dropbtn {
    border:solid;
    border-width:2px;
    border-color:transparent;
    padding:4px;
    font-weight: bold;
    text-align:center;
    text-decoration:none;
}
nav .navbarbtn {
    width:100%;
    font-size:16px;
    background-image:linear-gradient(rgb(0, 150, 255), rgb(0, 0, 200));
    color:white;
}
nav .navbarbtn:hover{
    border:solid;
    border-width:2px;
    border-color:white;
}
nav .navbarbtn:active{
    background-image:linear-gradient(rgb(0, 0, 200), rgb(0, 150, 255));
}


.dropbtn:active{
	background-image:linear-gradient(rgb(200, 200, 200), rgb(255, 255, 255));
}


.dropbtn{
    background-image:linear-gradient(rgb(255, 255, 255), rgb(200, 200, 200));
}



.error {
	font-weight: bold;
	color:red;
}




/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin:0px;
  padding:0px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color:white;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;} 

#playbtn {
    font-size:32px;
	font-weight:bold;
	text-decoration:none;
	border-radius:8px;
	padding:4px 48px 4px 48px;
    background-image:linear-gradient(rgb(0, 255, 0), rgb(0, 100, 0));
    color:white;
}
.createbtn {
	font-weight:bold;
	text-decoration:none;
	border-radius:4px;
	padding:2px 4px 2px 4px;
    background-image:linear-gradient(rgb(200, 200, 0), rgb(200, 100, 0));
    color:white;
	
}