#index {
   padding: 0;
   margin: 0;
   background-image: url("image/nature.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   color: #EEEEEE;
   text-align: center;
   font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
   font-weight: 700;
}

#home{
	height:300px;
	width:1000px;
	/*background-color: red;*/
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right:0;
	margin: auto;
	display:flex;
}

#home > article:nth-of-type(1){
	width:35%;
	display:flex;
	justify-content:center;
	align-items:center;
}
#home > article:nth-of-type(1)>img{
	border: 10px solid rgb(160,160,160,0.6);
	width:80%;
	border-radius:50%;
}

#home > article:nth-of-type(2){
	width:65%;
	display:flex;
	flex-wrap:wrap;
}

#home > article:nth-of-type(2)>article:nth-of-type(-1n+3){
	width:100%;
	text-align: start;
}

#home > article:nth-of-type(2)>article:nth-last-child(-n+2){
	width:50%;
	margin-top:20px;
}

#home > article:nth-of-type(2) p{
	font-size:20px;
	margin:0;
	font-weight: 400;
}

#home > article:nth-of-type(2)> article:nth-of-type(2){
	display:flex;
}

#home > article:nth-of-type(2) h1:nth-of-type(1){
	margin:0;
	margin-right:15px;
	font-size:36px;
	font-weight: 700;
}

.word {
  margin: 0;
  text-align: start;
  color: rgb(33,150,243);
  font-size:36px;
  font-weight: 700;
}

button:hover{
  background:white;
  color:rgb(33,150,243);
}

button {
    width: 80%;
    height: 80px;
    position: relative;
    background: rgba(255, 255, 255, .27);
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    font-size: 15px;
    outline: none;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    cursor: pointer;
	transition:all .5s ease-in-out;
}

@media (max-width: 959px){
	
	#home{
		flex-wrap:wrap;
		justify-content:center;
		width:auto;
		position:relative;
		margin-top:80px;
		height:auto;
	}
	
	#home > article:nth-of-type(1){
		width:60%;
	}
	
	#home > article:nth-of-type(2){
		margin-bottom:20px;
		width:80%;
	}
	
	#home > article:nth-of-type(2) p{
		text-align:center;
		margin-top:10px;
		margin-bottom:10px;
	}
	
	#home > article:nth-of-type(2)>article:nth-of-type(-1n+3){
		text-align:center;
		display:flex;
		justify-content:center;
		flex-wrap:wrap;
	}
	
	#home > article:nth-of-type(2) h1:nth-of-type(1) {
		width:100%;
		text-align:center;
		margin:0;
	}
	
	#home > article:nth-of-type(2) h1:nth-of-type(2) {
		width:100%;
	}
	
	#home > article:nth-of-type(2)> article:nth-of-type(2) {
		height:160px;
		overflow: hidden;
	}
}