:root {
	--dark: rgb(30,30,30);
	--button: rgb(28,147,227);
	--buttonHover: rgb(0,136,204);
	--greyText: rgb(125,127,129);
}

@font-face {
  font-family: roboto;
  src: url(../fonts/roboto100.ttf);
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto300.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto400.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto500.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto700.ttf);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/roboto900.ttf);
  font-weight: 900;
  font-style: normal;
}

.centerText {
	position: absolute; top: 50%; transform: translate(0,-50%); 
	width: 100%; text-align: center;
}
.line {
	position: relative;
}
	.rightSide {
		height: 100%;
		position: absolute; top: 0; right: 16px;
	}


body {
	margin: 0;
	font-family: roboto; background: black; color: white;
}
a {
	text-decoration: none; color: white; text-align: center;
}


#top {
	height: 54px; background: var(--dark);
	position: relative; z-index: 1;
}
#top .line {
	height: 34px;
	position: relative; top: 50%; transform: translate(0,-50%);
	padding-left: 16px;
}
	#logo {
		width: 34px;
		margin-right: 8px
	}
	#top .textOne {
		display: inline-block; vertical-align: top;
		position: relative; top: 5px;
		font-size: 21px; font-weight: 400;
	}
	
	#downloadButton {
		position: relative;
		width: 108px; height: 34px; border-radius: 17px;
		background: var(--button); font-size: 14px; font-weight: 700;
		user-select: none; cursor: pointer;
	}
		#downloadButton:hover {
			background: var(--buttonHover);
		}
#main {
	width: 400px; max-width: calc(100% - 30px); border-radius: 16px;
	position: relative; left: 50%; transform: translate(-50%,0); top: 32px;
	background: var(--dark); padding: 32px 0;
	text-align: center; z-index: 1;
}
#main > div {
	display: inline-block;
}
	#channelImage {
		width: 122px; height: 122px; border-radius: 100%; overflow: hidden;
		background: url(../images/channelImage.jpg) no-repeat; background-size: contain; background-position: center;
		margin-bottom: 16px;
	}
	
	#main .textOne {
		font-size: 26px; font-weight: 700;
		margin-bottom: 6px;
	}
	#main .textTwo {
		font-size: 15px; font-weight: 400;
		color: var(--greyText);
		margin-bottom: 13px;
	}
	#main .textThree {
		font-size: 16px; font-weight: 400;
		margin-bottom: 26px;
	}
	
	#joinChannelButton {
		position: relative; display: inline-block;
		width: 146px; height: 42px; border-radius: 22px;
		background: var(--button); font-size: 14px; font-weight: 700;
		user-select: none; cursor: pointer;
	}
		#joinChannelButton:hover {
			background: var(--buttonHover);
		}
	
#background {
	width: 100%; height: 100%;
	position: absolute; top: 0; left: 0;
	background: url(../images/background.png) no-repeat; background-size: cover; background-position: center;
}
	
	
	
	
	
	


