html {
    font-size:1vw;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1vw;
    color: #001c28;
    overflow-x: hidden;
}
div.siteHeader {
    background-color: rgb(96, 163, 188);
    padding-top: 1vw;
    padding-bottom: 1vw;
    color: rgb(255, 255, 255);
    font-family: Segoe UI, sans-serif;
    font-weight: 1000;
}

#creategame{
    margin-top:5vh;
}

p.siteHeader {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 8vw;
    font-size: 2vw;
}
.landing {
    display: grid;
    justify-content: center;
}


.board-container {
	display: grid;
	grid-template-rows: minmax(15vh,auto) repeat(5, 15vh);
	width: max-content;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(6,12vw);
    grid-gap: 0px 0.25vw;
    align-items:center;
    background-color: black;
    padding:0.25vh 0.25vw;
    font-family: Tahoma, Helvetica, "Helvetica Neue", Arial, sans-serif;
}
.grid-item {
	height:100%;
    background-image:url("jeopardyQuestion.jpg");
    text-align: center;
    font-weight: bold;
    word-wrap:normal;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.smallertext {
    font-size: 1vw;
    color: white;
    font-family: Tahoma, Helvetica, "Helvetica Neue", Arial, sans-serif;
}
.category {
    font-size: 1.5vw;
    color: white;
    font-family: "Impact", Impact, Tahoma, Helvetica, "Helvetica Neue", Arial, sans-serif;
    text-shadow: 0.25vw 0.25vw #001c28;
}
.grid-cell {
    font-size: 2.4vw;
    color: goldenrod;
    text-shadow: 0.25vw 0.25vw #001c28;
}
.question-container {
    position: fixed;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.25);
    justify-content:center;
    top:7%;
    left:7%;
}
.question-component {
    border-style:solid;
    border-color:black;
    border-width:2px;
    padding:1vh 1vw;
    position:absolute;
    min-height: 55vh;
    width:85vw;
    font-size: 3.5vw;
    font-family:"Korrina", "Georgia", "Times New Roman", "Arial";
    background-image:url("jeopardyQuestion.jpg");
    text-align: center;
    font-weight: bold;
    word-wrap:normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0.25vw 0.25vw #001c28;
    z-index:1;
}
.question-component-inline{
    display:inline;
}

.button-upperleft{
    position:absolute;
    top:0%;
    left:0%;
    width:0.1em;
    height:0.1em;
}
.button-bottom{
    font-size:1vw;
    height:auto;
    width:auto;
}
.flex-break{
    flex-basis:100%;
    height:0;
}
.score-sidebar{
	height: 100%;
	width: 18vw;
	position:fixed;
	top:0%;
	right:0%;
	margin: 8px;
	text-shadow:0.25vw 0.25vw #001c28;
	font-size:2vw;
	z-index:1;
    background-color:darkblue;
    color:whitesmoke;
    font-family:"Korrina", "Georgia" "Times New Roman", "Arial";
}