@import url('https://fonts.googleapis.com/css?family=Karla&display=swap');


/* GENERAL */


* {
	font-family: Karla;
}

body {
	margin: 0;
	background: linear-gradient(140deg, #1F1D2B 8%,#44424E 92%);  
	/*background-color: #1F1D2B;*/
	color: #FDFDFD;
	text-align: center;
	font-size: 18px;
}

div {
	margin: 0;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
  supported by Chrome, Opera and Firefox */
}

.left {
	float: left;
}

.right {
	float: right;
}

.container {
	width: 58%;
	margin: auto;
}

.innerContainer {
	width: 49%;
	border-radius: 2px;
	background-color: #FDFDFD;
	color: #1F1D2B;
	margin-bottom: 10%;
}

img.title {
	width: 75%;
}

img.header {
  width: 30%;
  height: 1%;
  margin-top: 0%;
  margin-bottom: 0;
}

h1.title {
	font-size: xxx-large;
	margin-block-end: unset;
}

p.subtitle {
	font-size: 14.5px;
	margin-top:2.3%;
	margin-bottom: 6%;
}

/* LOGIN PANEL */

.loginPanel {}

.loginPanelContent {
	margin-top: 5px;
	padding: 5px;
}

div.titleContainer {
	border-bottom: 1px solid #ccc;
}

h5.titleContainer {
	font-size: 120%;
	margin-top: 5px;
	margin-bottom: 5px;
}

input.inputName {
	outline: none;
	margin-left:1%;
	width: 83%;
	padding: 8px 15px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.addPlayer {
	background-color: #1F1D2B;
	color: #FDFDFD;
	width: 15%;
	padding: 8px 15px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.playButton {
	outline: none;
	width: 100%;
	background-color: #1F1D2B;
	color: #FDFDFD;
	border-radius: 4px;
	border: none;
	padding: 5px;
	text-align: center;
	display: inline-block;
	margin: 4px 2px;
	margin-top: 0 !important;
	cursor: pointer;
}


/* DESCRIPTION */


.description {

}

.innerDescription {
	text-align: left;
	padding: 15px;
}

.innerDescriptionTitle {
	font-size: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
}

.innerDescriptionContent {
	font-size: 80%;
	margin-top: 5px;
	margin-bottom: 5px;
}

p img {
    height: 1em;
    width: auto;
}

/* RESPONSIVE */


@media only screen and (max-width: 1000px) {
	.container {
		width: 95%;
	}
	.innerContainer {
		width: 90%;
		display: inline-block;
		margin-bottom: 10%
	}
	.title {
		margin-block-end: unset;
	}
	.subtitle {
		margin-top: 0;
		margin-bottom: 6%;
	}
	h5.titleContainer {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 1000px) {
	.loginPanel {
		float: left;
	}
	.description {
		float: right;
	}
}