*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.content-desktop {display: block;}
.content-mobile {display: none;}

@media screen and (max-width: 980px) {
	.content-desktop {display: none;}
	.content-mobile {display: block;}
}

body{
	background: rgb(222,44,44);
	background: linear-gradient(45deg, rgb(204, 40, 40) 0%, rgb(144, 21, 197) 100%);
	position: relative;
	min-height: 100vh;
}

.FixedTop{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
	z-index:10
}

.Header{
	width: 100%;
	height: 80px;
	border-left: 10px;
	border-right: 10px;
	background-color: #101010;
	box-shadow: 0px 0px 10px 3px black;
}

nav{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 5px;
	font-family: 'Merriweather Sans', sans-serif;
}

.NavButtons{
	padding-left: 10px;
	display: flex;
	justify-content: space-around;
	width: 38%;
}

.NavButtons a{
	color: rgb(233, 233, 233);
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: bold;
}

.NavButtons a:hover{
	color: rgb(178, 3, 231);
}

.NavButtons li{
	list-style: none;
}

.Hamburger{
	position: fixed;
	right: 0;
	padding-right: 20px;
	padding-top: 20px;
}

.HamburgerExit{
	position: absolute;
	right: 0;
	padding-top: 20px;
	padding-right: 10px;
	transform: translate(0, -30px);
}

.overlay{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,1);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay a{
    padding: 8px;
    text-decoration: none;
    font-size: 45px;
    color: #818181;
    display: block;
    transition: 0.3s;
	font-family: 'Merriweather Sans', sans-serif;
}

  .overlay a:hover, .overlay a:focus{
    color: #f1f1f1;
}

.overlay-content{
    position: relative;
    top: 0%;
    width: 100%;
    text-align: center;
    margin-top: 70px;
    border: none;
}

.WelcomeText{
	position: absolute;
	text-align: center;
	transform: translate(0, -400px);
}

.line{
	width: 100vw;
}
.left, .right {
  width: 50vw;
  overflow: hidden;
  display: inline-block;
}
.left {
  color:rgb(252, 47, 235);
  transform: skew(0deg, -18deg);
}
.right {
  color: rgb(174, 226, 52);
  transform: skew(0deg, 18deg);
}
.left .content {
  width: 100vw;
  text-align: center;
}
.right .content {
  width: 100vw;
  text-align: center;
  transform: translate(-50vw);
}
span {
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 5vw;
  text-transform: uppercase;
  line-height: .8;
  transition: ease-out .6s;
}

.SocialMediaLinks{
	width: fit-content 100%;
	background-color: #101010;
	box-shadow: 0px 0px 50px 5px rgb(0,0,0);
	transform: translate(0, -60px);
	margin: auto;
}

.Squares{
	display:  flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
}

.AboutMeContainer{
	margin: auto;
	border-radius: 30px;
	width: 80%;
	background-color: #101010;
	box-shadow: 0px 0px 10px 3px black;
	padding-bottom: 200px;
}
.AboutMeText{
	text-align: center;
	overflow-wrap: break-word;
	font-family: 'Merriweather Sans', sans-serif;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 20px;
	letter-spacing: 1.3px;

	background: radial-gradient(
    hsl(100 100% 60%), 
    hsl(200 100% 60%) 
  ) fixed;
  background: conic-gradient(
    hsl(100 100% 60%), 
    rgb(224, 37, 146), 
    hsl(100 100% 60%) 
  ) fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.TwitchDesktop{
	padding-top: 50px;
	width:80%;
	margin: 0 auto;
	padding-bottom: 200px;
}

.TwitchMobile{
	padding-top: 50px;
	width:100%;
	margin: 0 auto;
	padding-bottom: 200px;
}

.Footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	border-left: 10px;
	border-right: 10px;
	background-color: #101010;
	box-shadow: 0px 0px 10px 3px black;
}

.FooterText{
	font-family: 'Merriweather Sans', sans-serif;
	color: rgb(233, 233, 233);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 40px;
}

.parallax {
	/* The image used */
	background-image: url("/Media/HomeBackground.jpg");

	/* Set a specific height */
	min-height: 700px;
  
	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }