body{
width: 100vw;
height: 100vh;
transition: 250ms height;

background-size: cover;
background-position: center;
background-color: rgb(114, 146, 127)
}





p {
    font-size: 150px;
	font-weight: normal;
    text-align: center;
    word-wrap: break-word;
    color: rgba(0, 0, 0, 0.884);
	font-family:  "Courier New", Courier, monospace;
	background-image: url("https://cdn1.vectorstock.com/i/1000x1000/62/80/texture-for-platformers-pixel-art-ground-vector-6026280.jpg");
    
}
h2{	font-size: 20px;
	font-weight: normal;
	text-align: center;
	font-family:  "Courier New", Courier, monospace;
	color: rgba(49, 45, 45, 0.884);

} 

main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	height: 80vh;
    grid-gap: 1ch;
	padding: 1ch;
	background-color: rgb(53, 58, 53);
}


.title-page{
	
	padding: 10px;
	background:#efefef;
	text-align: center;
}


.sobre-mim{
	padding: 10px;
	background:#efefef;
	text-align: center;
}
ul{
	text-align: center;
	background-color: #efefef;

}




















@import "compass/css3";

$base-font-size:    16px!default;
$base-line-height:  24px!default;
$base-spacing-unit: $base-line-height!default;



.header {
	width: fit-content;
	text-align: center
	background-color:  rgba(49, 45, 45, 0.884);
	height: $base-line-height * 2;
	margin-top: $base-line-height;
	
}
a {

	color: black;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	&:hover {
	color: white;

}

}

.current {

	color: white;

}

.menu-icon1 {

	display:inline-block;
	width: 100%;
	height: $base-line-height * 2;
	color: black;
	line-height: $base-line-height * 2;
	text-align: center;;

	}


	nav ul, nav:active ul {

		display: none;
		position: relative;
		padding: 0 $base-spacing-unit;
		background: #4C8FEC;
		width: 100%;
		list-style: none;

	}

	nav li {

		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;

	}

	nav:hover ul {
		display: block;
	}


/*MEDIA QUERY*/

// @include media-query(desk){
  

@media screen and (min-width: 600px) {

nav {

	float: left;

	
	.menu-icon1 {
		display: none;
	}	
}

nav ul, nav:active ul {

		display: inline;
		padding: 0;
		width: 100%;
		
	}

	nav li {

		display: inline-block;
		width: auto;
		padding: 0 $base-spacing-unit;
		line-height: $base-line-height * 2;

	}


}

/* Slideshow container */
.gallery-container {
	width: 90%;
	position: relative;
	margin: 0 5%;
	background: #333;
	padding: 2px;
  }
	@media (min-width: 480px) {
		.gallery-container {
		  width: 800px;
		  margin: auto;
		}
	}
  
  /* Hide the images by default */
  .mySlides {
	display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	background-color: rgba(0,0,0,0.1);
  }
  
  /* Position the "next button" to the right */
  .next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	width: 100%;
	text-align: center;
  }
  
  .imgslide {
	width: 100%;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
  }
  @media (max-width: 768px) {
	.numbertext {
	  top: 15px;
	}
  }
  
  /* Fading animation */
  .fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
  }
  
  @keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
  }
  

	
	
	