body {
	margin: 0px;
	overflow-x: hidden;
	background-color: black;
	scroll-behavior: smooth;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

@font-face {
    font-family: lemonmilk;
    src: url("../style/fonts/LemonMilk.otf") format("opentype");
}

@font-face {
    font-family: montserratlight;
    src: url("../style/fonts/Montserrat-Light.otf") format("opentype");
}

#input {
	width: 300px;
	border: 2px solid red;
	background-color: black;
	padding: 12px 20px;
	margin: 8px 0px;
	box-sizing: border-box;
	outline: none;
	color: white;
	resize: none;
	font-family: montserratlight;
	line-height: 25px;
	margin: 0px;
	vertical-align: top;
	margin-top: 15px;
}

#input:focus {
	background-color: white;
	color: black;
}

#submit {
	padding: 10px 0px;
	font-family: lemonmilk;
	background-color: red;
	color: white;
	outline: none;
	border: 2px solid red;
	cursor: pointer;
	font-size: 1.4em;
	vertical-align: top;
	margin-top: 15px;
	border-bottom: 1px solid red;
	height: 53px;
}

#submit-img {
	height: 35px;
	margin: 0px;
	position: relative;
	bottom: 34px;
	opacity: 0;
	-webkit-animation: mail-rotate 4s ease;
    -webkit-animation-iteration-count: infinite;
}

@keyframes mail-rotate {
  0% {transform: rotate(0deg)}
  100% {transform: rotate(359deg)}
}

#submit-span {
	margin: 0px;
}

#submit-div {
	width: 100%;
	height: 0px;
	float: left;
}

#form {
	display: inline-block;
	vertical-align: top;
}

#formcontainer {
	text-align: center;
}

#pass-message {
	color: white;
	display: block;
	text-align: center;
	font-family: montserratlight;
	width: 100%;
	text-align: center;
}

#signin-title {
	font-family: lemonmilk;
	color: white;
	letter-spacing: 0.05em;
	font-size: 5em;
	text-align: center;
}

#selectstream-title {
	font-family: lemonmilk;
	color: white;
	letter-spacing: 0.05em;
	font-size: 4em;
	text-align: center;
}

#stream-title {
	font-family: lemonmilk;
	color: white;
	letter-spacing: 0.05em;
	font-size: 5em;
	text-align: center;
	margin-top: calc(50vh - 100px);
	margin-bottom: 0px;
}

#companyname {
	font-family: lemonmilk;
	color: white;
	letter-spacing: 0.05em;
	font-size: 1.5em;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 20px;
}

.streamselect {
	width: 200px;
	height: 200px;
	margin: 20px;
	background-color: black;
	display: inline-block;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	transition: 0.2s;
	border: 2px solid black;
	vertical-align: top;
}

.streamselect:hover {
	border: 2px solid white;
}

.streamselecthype {
	color: white;
	font-family: lemonmilk;
	font-size: 1.1em;
	position: relative;
	top: 160px;
	background-color: red;
	padding: 5px 15px;
}

.streamselecthypecont {
	width: 100%;
	height: 0px;
	text-align: center;
}

#streampackage {
	text-align: center;
}

#playbutton {
	width: 50px;
	height: 50px;
	margin-top: 0px;
	cursor: pointer;
	opacity: 0;
	transition: all 0.1s;
}

#note {
	position: fixed;
	width: 100%;
	top: 0px;
	font-family: montserratlight;
	color: white;
	left: 0px;
	font-size: 1em;
	margin-top: 10px;
	text-align: center;
	transition: 1s;
}

#mix {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 100px;
	right: 20px;
	background-image: url('./Mix.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
	cursor: pointer;
}

#live {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 20px;
	right: 20px;
	background-image: url('./Live.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
	cursor: pointer;
}

.streamselectblack {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	opacity: 0;
	transition: 0.3s;
	position: relative;
	z-index: 100;
}

.streamselectblack:hover {
	opacity: 1;
}

.streamselectheader {
	font-family: lemonmilk;
	color: white;
	text-align: center;
	letter-spacing: 0.05em;
	font-size: 1.5em;
}

.streamselectspan {
	display: block;
	text-align: center;
	font-family: montserratlight;
	color: white;
	margin: 10px;
	font-size: 1.2em;
}

@media screen and (max-width: 700px) {
	#stream-title {
		font-size: 11vw;
	}
	#companyname {
		font-size: 4vw;
	}
}