*{
	margin: 0;
	padding: 0;
}

::-webkit-scrollbar{
  width: 7px;
  background-color: #ced6e0;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(transparent,tomato);
  border-radius: 12px;
  height: 10px;
}
::-webkit-scrollbar-thumb:hover{
	background: linear-gradient(transparent,yellow);
    border-radius: 12px; 
}

body{
	background-color: #ced6e0;
}
.logo img{
    height: 110px;
}
.header {
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main_header {
	width: 450px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.main_header a{
	text-decoration: none;
	color: black;
	font-family: 'Raleway', sans-serif;
    transition: 0.2s;
}
.main_header a:hover{
	color: #22223f;
	transition: 0.2s;
	padding-bottom: 20px;
	border-bottom: 4px solid black;
}
.contact button{
    margin-right: 60px;
	font-size: 15px;
	background-color: #0398fc;
	color: black;
	border: none;
	border-radius: 10px;
	padding: 10px 45px;
	cursor: pointer;
	transition: 0.5s linear;
    -webkit-box-shadow: 10px 10px 22px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 22px -5px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 22px -5px rgba(0,0,0,0.75);
  }

.contact button:hover{
	background-color: #636e72;
	color: #fff;
	transition: 0.2s linear;
	-webkit-box-shadow: 10px 10px 22px -5px rgba(66,183,212,1);
    -moz-box-shadow: 10px 10px 22px -5px rgba(66,183,212,1);
    box-shadow: 10px 10px 22px -5px rgba(66,183,212,1);
}
.contact button a{
	text-decoration: none;
}
.leftlogo img{
	position: absolute;
	left: 4%;
	top: 32%;
	width: 300px;
}
.rightlogo img{
	position: absolute;
	right: 4%;
	top: 32%;
	width: 300px;
}
.welcome h1{
	width: 300px;
	height: 150px;
	padding-top: 120px;
	text-align: center;
	background-color:#0398fc;
	position: absolute;
	top: 40%;
	font-size: 30px;
	font-family: 'Raleway', sans-serif;
	color: #fff;
	left: 37%;
	cursor: pointer;
	transition: 0.2s linear;
	animation: animate 2s linear infinite;
	animation-direction: alternate;
}
@keyframes animate{
	0%{
		border-radius: 0%;
	}
	75%{
		background-color: lightgreen;
	}
	100%{
		border-radius: 50%;
		background-color: lightgreen;
	}
}
.welcome h1::after{
	content: "Atomic-Gamer";
	animation: textchange 2s linear infinite;
	color: tomato;
}
@keyframes textchange{
    0%{
         content: "Atomic-Gamer";
    }
    100%{
    	content: "AbhijeetGamer";
    }
}

.subscribe button{
    height: 37px;
    width: 90px;
    position: fixed;
    outline: none;
    font-size: 16px;
    font-family:  'Raleway', sans-serif;
    background-color: red;
    color: red;
    border: 1px solid black;
    border-radius: 6px;
    bottom: 10px;
    right: -60px;
    cursor: pointer;
    z-index: 999;
    transition: 0.2s linear;
}
.subscribe button:hover{
     position: fixed;
     right: 10px;
     color: #fff;
}
.subscribe button:visited{
     position: fixed;
     right: 10px;
     color: #fff;
     background-color: green;
}

.mainhr{
	width: 80%;position:
	absolute;left: 130px;
	border: none;
	height: 10px;
	background: linear-gradient(to right,tomato,blue,tomato);
	border-radius: 30px;
	animation: hrani 4s linear infinite;
	animation-direction: alternate;
	transition: 0.2s linear;
}
@keyframes hrani{
	0%{
		background: linear-gradient(to right,tomato,blue,tomato);
	}
	25%{
		background: linear-gradient(to right,red,yellow,red);
		border-radius: 31px;
	}
	50%{
		background: linear-gradient(to right,lightgreen,tomato,lightgreen);
		border-radius: 33px;
	}
    100%{
		background: linear-gradient(to right,yellow,red,yellow);
		border-radius: 50px;
	}
}
.aboutus h2{
    position: absolute;
    left: 44%;
    top: 100%;
    color: #2c3e50;
    padding: 10px 10px;
    border-bottom: 2px solid black;
}
.channellogo{
	position: absolute;
	top: 120%;
	left: 44%;
	width: 100px;
	border-radius: 50%;
	border: 5px solid yellow;
	animation: aboutimg 5s linear infinite;
	animation-direction: alternate;
}
@keyframes aboutimg{
	0%{
	    border-radius: 50%;
	    border: 5px solid yellow;
	}
	25%{
        border-radius: 50%;
	    border: 5px solid red;
	}
	50%{
        border-radius: 50%;
	    border: 5px solid #0398fc;
	}
	100%{
        border-radius: 50%;
	    border: 5px solid tomato;
	}
}
.aboutus h3{
    position: absolute;
    left: 42%;
    top: 145%;
    font-size: 30px;
    color: #2c3e50;
    cursor: pointer;
}
.aboutus h3:hover{
	    border-bottom: 4px solid black;
	    padding-bottom: 10px;
        transition: 0.2s linear;
}
.social_media img{
	position: absolute;
	top: 139%;
	left: 47%;
	width: 30px;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.2s linear;
}
.social_media img:hover{
	position: absolute;
	left: 637px;
	width: 32px;
	transition: 0.2s linear;
	border: 2px solid black;
}
