@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
	font-family: 'Oswald', sans-serif;
}

html {
	margin: 0;
	padding: 0;
}

body {
	background: #000;
	color: #fff;
	height: 100%;
}

input[type="submit"],
input[type="button"] {
	border: 1px solid #09C;
	background-color: #09C;
	color: #FFF;
	height: 30px;
	border-radius: 5px;
	cursor: pointer;
}

input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.8;
}


/* ====== MOBILE ====== */

@media (max-width:950px) {
	.s100 {
		height: 100px;
	}
	.s100 img {
		height: 100px;
	}
	.logo {
		position: absolute;
		top: 20px;
		left: 0;
		right: 0;
		text-align: center;
	}
	.logo img {
		height: 300px;
	}
	.content_container {
		width: 85%;
		margin: 20px auto 20px auto;
	}
	.container_left,
	.container_center,
	.container_right {
		display: none;
		visibility: hidden;
	}
	.container_row {
		width: 100%;
		height: 100px;
		margin-bottom: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.topmargin {
		margin-top: 350px;
	}
	.tab button {
		background-color: inherit;
		color: #FFF;
		font-size: 1.2em;
		border: none;
		outline: none;
		cursor: pointer;
		padding: 14px 16px;
		transition: 0.3s;
		font-size: 17px;
		width: 50%;
		float: left;
	}
	.tab button:hover {
		background-color: #09C;
	}
	.tab button.active {
		background-color: #555;
	}
	.tabcontent {
		display: none;
		border-top: none;
		font-size: 1.2em;
		color: #FFF;
		background-color: rgba(22, 22, 22, 0.7);
	}
}


/* ====== DESKTOP ====== */

@media screen and (min-width:950px) {
	.s100 {
		height: 100px;
	}
	.s100 img {
		height: 100px;
	}
	.logo {
		position: absolute;
		top: 20px;
		left: 0;
		right: 0;
		text-align: center;
	}
	.logo img {
		height: 300px;
	}
	.content_container {
		width: 85%;
		margin: 20px auto 20px auto;
	}
	.container_left {
		position: absolute;
		top: 250px;
		bottom: 32px;
		left: 0;
		width: 33%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.container_center {
		position: absolute;
		top: 250px;
		bottom: 32px;
		left: 33%;
		width: 33%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.container_right {
		position: absolute;
		top: 250px;
		bottom: 32px;
		left: 66%;
		width: 33%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.container_row {
		display: none;
		visibility: hidden;
	}
	/* Style the tab */
	.tab {
		overflow: hidden;
		border: 1px solid #ccc;
		background-color: #222;
		left: 5%;
		right: 5%;
		height: 50px;
		text-align: center;
	}
	.tab button {
		background-color: inherit;
		float: left;
		color: #FFF;
		font-size: 1.2em;
		border: none;
		outline: none;
		cursor: pointer;
		padding: 14px 16px;
		transition: 0.3s;
		font-size: 17px;
	}
	.tab button:hover {
		background-color: #09C;
	}
	.tab button.active {
		background-color: #555;
	}
	.tabcontent {
		display: none;
		border-top: none;
		font-size: 1.2em;
		color: #FFF;
		background-color: rgba(22, 22, 22, 0.7);
	}
}


/* ====== SHARED ====== */

.ripple {
	background-position: center;
	transition: background 0.8s;
}

.ripple:hover {
	background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}

.ripple:active {
	background-color: #6eb9f7;
	background-size: 100%;
	transition: background 0s;
}

button.picker {
	border: none;
	border-radius: 2px;
	padding: 12px 18px;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
	color: white;
	background-color: #2196f3;
	box-shadow: 0 0 4px #999;
	outline: none;
	font-size: 1.5em;
}

.bottom {
	position: fixed;
	height: 30px;
	line-height: 30px;
	background-color: #222;
	border-top: 2px solid #555;
	left: 0;
	right: 0;
	bottom: 0;
	color: #FFF;
	font-size: 1em;
}

.half {
	float: left;
	width: 50%;
	text-align: center;
}

a:link, a:visited {
	text-decoration: none;
	color: #09C;
}
