/* CSS Document */

html, body { 
	width: 100%; 
	height: 100%; 
}

body {
	margin: 0;
	background-image: url("images/colors_bg.png");
	color: white;
	font-family: 'Inter', sans-serif;
}

.dark {
	color: #424252;
}

input, button, textarea, select {
	font-family: 'Inter', sans-serif;
}

input[type=submit] {
	min-width: 80px;
	font-size: 1.2rem;
	margin-top: 30px;
	display: block;
	margin: auto;
}

input.submit_button {
	text-align: center;
	font-family: 'Shadows Into Light', cursive;
	font-size: 2rem; 
	min-width: 150px; 
	display: block; 
	margin: auto; 
	cursor: pointer;
	margin-top: 20px;
}

input.submit_button2 {
	text-align: center;
	font-family: 'Shadows Into Light', cursive;
	display: block; 
	margin: auto; 
	margin-top: 10px;
	cursor: pointer;
}

div.text_container {
	background-color: #424252;
	width: 80vw;
	padding: 40px;
	border-radius: 3vw;
	display: block;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

h1 {
	text-align: center;
	font-family: 'Shadows Into Light', cursive;
	font-size: 2.5rem;
}

h2 {
	text-align: center;
	font-family: 'Shadows Into Light', cursive;
	font-size: 2rem;
	margin-bottom: 0;
	margin-top: 5px;
}

h3 {
	margin-bottom: 10px;
}

p.subtitle {
	text-align: center;
	margin-bottom: 50px;
}

div.alt_color {
	padding: 10px;
}

div.alt_color:nth-child(even) {
	background-color: #525265;
	border-radius: 10px;
}

li {
	margin-bottom: 10px;
}

img#sam {
	padding: 10px;
	background-color: white;
	margin: auto;
  	display: block;
	margin-top: 50px;
	margin-bottom: 50px;
	border-radius: 10px;
}

/* Test 1 GUI */

svg { 
	display:block; 
	background-color: black;
	background-image: url("images/colors_bg.png");
}

div#container {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: flex-start;
	width: 100vw;
	min-height: 100vh;
	background: black;
	flex-wrap: wrap;
}

div.colorsquare {
	margin: 2vw;
	width: 10vw;
	height: 10vw;
	border: 1px solid #444444;
}

div#player_container {
	padding: 10px;
	background-color: #565656;
	position: absolute;
	width: 300px;
	height: 90px;
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

ellipse {
	cursor: pointer;
}

/* Test 2 GUI */

div.vad {
	width:640px;
	height:170px;
	background-size: contain; 
	background-repeat: no-repeat;
	background-position: top center;
    display: flex;
    align-content: flex-end;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    margin: auto;
}

span.vad {
	width: 8%;
	height: 16px;
	font-size: 9px; 
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

input[type=range] {
	width: 82%;
}

div#valence_div {
	background-image: url('images/valence.png');
}

div#arousal_div {
	background-image: url('images/arousal.png');
}

div#dominance_div {
	background-image: url('images/dominance.png');
}