body{
	margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 1.3rem;
    background-image: linear-gradient(to right,pink,orange);
    background-size: cover;
    display:flex;
    flex-direction: column; 
    justify-content: space-between;
}
/*********--------CSS ON HEADER CONTAINER DIV--------**********/
#header{
    background-color: black;
    position:sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 7%;
    top: 0px;
    left: 0px;
    z-index: 10;
}
/*************-----------Website Logo------------**************/
#mycareer{
	color: white;
	font-size:1.5rem;
	animation:mycareer 1.5s linear 0s infinite alternate;
}
@keyframes mycareer {
  0%   {color: red;}
  25%  {color: yellow;}
  50%  {color: skyblue;}
  100% {color: #70fb67;}
}
#icon-name{
	padding-left:0.5%;
}
#website-logo{
    color: blue;
}
#icon-boundary{
	padding: 4px;
	background-color: white;
	border:1px solid white;
	border-radius: 50%;
}
.in-block{
	display: inline-block;
}
/***-----------------------Main Menu in Header-----------------*/
#main-menu li a{
	text-decoration: none;
	color: white;
}
#main-menu li a:hover{
	text-decoration: underline;
	font-weight: bold;
	color: #e5e3a2;
	box-shadow: 0px 0px 7px 2px lightgrey;
}
#main-menu li{
	display: inline-block;
	padding-left: 7px;
	text-decoration: none;
}
#bars{
	display: none;
	
}
#bars i{
	color: white;
}
.dropdown-list{
	display:none;
	background-color: black;
	position: fixed;
	top: 6.5vw;
	height: 50%;
    right: 1vw;
    z-index: 10;
    width: 200px;
    perspective: 4000px;
    line-height: 2rem;
}
/******---------------Buttons in header for sigin-------------********/
.signin{
	background-color: white;
	color: blue;
	border:1px solid blue;
}
.signin:hover{
	background-color: white;
	font-weight: bolder;
	text-decoration: underline;
	color: black;
	border:2px solid black;
}
.started{
	background-color: blue;
	color: white;
	border:1px solid white;
	font-size: 1.1rem;
}
.started:hover{
	text-decoration: underline;
}
/**********----------NOTIFICATION BELL----------***********/
.notification i{
	color: white;
}
.notification i:hover{
	color: orange;
}
.notification i:active{
	color:red;
}
/********---------------SLIDESHOW CSS -------------***********/
#slideshow { 
  margin: 0.7% auto; 
  position: relative; 
  width: 52vw; 
  height: 28vw; 
  padding: 1%; 
  border:1px solid black;
  box-shadow:5px 5px 10px 18px #efdfdf7a;
}
#div1{
	background-image: url("Images/blogpageslideshowimage1.png");
}
#div2{
	background-image: url("Images/blogpageslideshowimage2.png");
}
#div3{
	background-image: url("Images/blogpageslideshowimage3.jpg");
}
#slideshow > div { 
  position: absolute;
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0px; 
  left: 0px; 
  right: 0px; 
  bottom: 0px; 
}
/******------------------HIDING SPAN ELEMENT--------------*******/
.hide{
	display: none;
}
/*****---------------------BLOGAREA CSS----------------------*******/
#blogarea{
	position: relative;
	top: 4vw;
	left: 20%;
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: auto;
}
/********---------------BLOG PAGE-------------****************/
fieldset{
    color:#0f0632;
    background-color:white;
	width:80%;
 }
fieldset legend{
	font-size: 1.5rem;
	font-weight: 800;
}
#blogarea img{
	border:1px solid black;
	border-radius: 10%;
}
/********---------------READ BUTTON-------------***********/
.read{
	background-color: blue;
	color: white;
	border:1px solid white;
	font-size: 1.1rem;
}
/*********---------------FOOTER---------------*************/
#footer{
	position: relative;
	top: 10vw;
	padding: 1%;
	color: white;
	background-color: black;
}
#footer i{
	color: white;
	padding:3%;
	border-radius: 50%;
	vertical-align: top;
}
#contact-form input,textarea {
    max-width: 90%;
    padding: 4px 10px;
    margin-bottom: 10px;
    border: 0px solid transparent;
    border-bottom: 2px solid white;
    line-height: 1.6;
    font-size: 1.05rem;
    width: 90%;
}
#contactform{
	min-width: 236px;
	width: 40%;
}
#contactat{
	margin-top: 40px;
	min-width: 322px;
	width: 40%;
}
.social-icon{
	min-width: 180px;
}
#footer i:hover{
	color: #e5e3a2;
	box-shadow: 0px 0px 5px 5px lightgrey;
}
/*------------------RESPONSIVENESS----------------*/
@media only screen and (max-width: 768px){
	#footer {
        flex-wrap: wrap;
    }
    #contactat{
    	margin-top: 50px;
    	margin-left: 20px;
    }
    #contactform{
    	margin-top: 20px;
    	margin-left:90px;
    }
    .resp-remove{
    	display: none;
    }
    #bars{
    	display: inline-block;
		margin-right:2%;
    }
    #header-button{
    	display: none;
    }
	#slideshow{
		width:80%;
		height:40vw;
	}
}