html{
	height: 100%;
}

body{
	max-width: 1000px;
	margin: auto;
	background-color: white;
	padding-left: 25px;
	padding-right: 25px;
	font-family: montserrat;
	position: relative;
	min-height: -webkit-calc(100% - 40px);
	min-height: calc(100% - 40px);
}

@media(max-width: 400px){
	body{
		padding-left: 15px;
		padding-right: 15px;
	}
}

p{
	font-size: 20px;
	color: #2200FF;
	font-weight: 600;
}

header{
	height: 40px;
}

#title{
	font-weight: 700;
	font-size: 23px;
	display: inline-block;
	line-height: 40px;
}

#title a{
	color: #2200FF;
	text-decoration: none;
}

#educationTitle{
	font-size: 30px;
}

nav{
	display: inline-block;
	width: -webkit-calc(100% - 395px);
	width: calc(100% - 395px);
	text-align: center;

}

nav ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
}


.navItem{
	display: inline-block;
	font-weight: 400;
	font-size: 13px;
	margin-left: 10px;
	margin-right: 10px;

}

.navItem a{
	text-decoration: none;
	color: #A0A09F;
	line-height: 40px;
	transition: color 0.3s;
}

.navItem:hover a{
	color: #FF00AA;
}

 /*dúvidas aqui*/
.navItem.active a{
	color: #2200FF;
}


#instagram{
	display: inline-block;
	float: right;
}

#instagram a{
	text-decoration: none;
	color: #2200FF;
	font-weight: 600;
	font-size: 18px;
	line-height: 40px;
	transition: color 0.3s;
}

#instagram a:hover{
	color: #FF00AA;
}

/* Menu */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #e0e0e0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  margin: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #2200FF;
  transition: 0.3s;
  font-weight: 600;
  float: left;
}

.sidenav a:hover {
  color: #FF00AA;
}

.sidenav .socialMedia{
	float: left;
	margin-top: 32px;
	margin-left: 32px;
}

.sidenav #LinkedIn{
	margin-left: 15px;
}


.sidenav .closebtn {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 40px;
}


#NavIcon{
	color:#2200FF;
    float: right;
    margin-top: 17px;
    transition: color 0.3s;
}

#NavIcon:hover{
	color: #FF00AA;
}

.sidenav .activeMenu{
	color: #ffffff;
}


@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.clear{
	clear: both;
}


/* Media Queries*/

@media(max-width: 850px){

	#navigation{
		float: right;
	}

	#navigation ul{
		display: none;
	}

	#NavIcon{
		display: block;
	}

	#instagram{
		display: none;
	}
}

@media(min-width: 851px){
	#NavIcon{
		display: none;
	}

	.sidenav{
		display: none;
	}

	#navigation ul{
		display: inline-block !important;
	}
}

@media(max-width: 350px){
	#title{
		padding-top: 3px;
		font-size: 20px;
	}

}


/* Index (Design) */

.feed{
	display: flex;
	padding-bottom: 50px;
	flex-flow: row wrap;
	gap: 14px;
}

.feed a{
	width: calc(50% - 7px);
	line-height: 0;
}

.feed a div{
	position: relative;
	width: 100%;
}

.feed a div span{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	font-weight: 600;
	color: white;
	z-index: 2;
	opacity: 0;
}

.feed a:hover{
	cursor: pointer !important;
}

.feed a img:hover + span{
	opacity: 1;
}

.indexImage{
	width: 100%;
	height: auto;
	transition: filter 0.3s;
}

/* .column2{
	float: right;
} */

.indexImage:hover{
	filter: brightness(30%);
}


@media(max-width: 700px){

	.feed a{
		width: 100%;
	}

	/* .column2{
		float: none;
	} */
}

/* Footer */


footer{
	height: 40px;
	position: absolute;
	bottom:0;
	width: -webkit-calc(100% - 50px);
	width: calc(100% - 50px);
}

#footerSocialDiv{
	width: 20%;
	display: inline-block;
}

.footerSocial{
	line-height: 40px;
	margin-right: 10px;
	font-size: 20px;
	color: #bababa;
	transition: color 0.3s;
}

.footerSocial:hover{
	color: #FF00AA;
}

#credits{
	line-height: 40px;
	width: 60%;
	text-align: center;
	display: inline-block;
	font-weight: 400;
	font-size: 12px;
	color: #bababa;
}

#credits a{
	color: #bababa;
	transition: color 0.3s;
}

#credits a:hover{
	color: #FF00AA;
}

#license{
	line-height: 40px;
	float: right;
	padding-top: 15px;
}

#footerMobile{
	margin: auto;
	margin-top: 20px;
	text-align: center;
}


@media(max-width:700px){
	#footerDesktop{
		display: none;
	}

	#footerMobile{
		display: block;
	}
}

@media(min-width:701px){
	#footerDesktop{
		display: block;
	}
	#footerMobile{
		display: none;
	}
}

/* About.html */

#aboutMain{
	margin-top: 50px;
}

#bio{
	width: 60%;
	display: inline-block;
}

h3{
	color: #2200FF;
	font-weight: 700;
	font-size: 30px;
}

#whatIdo{
	width: 30%;
	display: inline-block;
	float: right;
}

#whatIdo ul{
	list-style-type: none;
	text-align: left;
	padding: 0;
	color: #2200FF;
	font-weight: 400px;
	font-size: 15px;
}

#contactSection{
	margin-top: 50px;
}

.mobileLink{
	display: block;
}

@media(max-width: 825px){

	#whatIdo ul{
		font-size: 13px;
	}
}

@media(max-width: 700px){
	h3{
		font-size: 25px;
	}
	p{
		font-size: 15px;
	}
	#whatIdo ul{
		font-size: 12px;
	}
	#aboutMain{
		margin-top: 20px;
	}

}

@media(max-width: 600px){
	#bio{
		display: block;
		width: auto;
		margin-bottom: 50px;
	}
	#whatIdo{
		display: block;
		float: none;
		width: auto;
		margin-bottom: 50px;
	}
	#whatIdo ul{
		font-size: 15px;
	}
}

/* contacts.html */

#contactsMain{
	width: 45%;
	margin:auto;
}

.contactIcon{
	font-size: 20px;
	color: #2200FF;
	margin-right: 7px;
	transition: color 0.3s;
}

.contactIcon:hover{
	color: #FF00AA
}

#contactsMain fieldset{
	border:0;
	padding: 0;
	margin: 20px 0 0 0;
}

#contactForm input{
	display: block;
	border: 3px solid #2200FF;
	margin-bottom: 10px;
	padding-left: 7px;
	width: 100%;
	box-sizing: border-box;
	/* box sizing integra, na largura do elemento, o padding e o border */
	height: 36px;
	line-height: 36px;
	font-size: 12px;
	font-weight: 600;
	color: #FF00AA;
}

#button{
	width: 100%;
}

#button input{
	background-color: #2200FF;
	border-radius: 0;
	border: 0;
	width: 50px;
	height: 30px;
	font-size: 12px;
	color: white;
	font-weight: 600;
	transition: background-color 0.3s;
	float: right;

}

#button input:hover{
	background-color: #FF00AA;
}

@media(max-width: 920px){
	#contactsMain{
		width: 70%;
	}

}

@media(max-width: 700px){
	#contactsMain{
		width: 100%;
		margin-left: 0;
	}
}

/* Education */

#educationTitle{
	color: #2200FF;
}

#educationIntro{
	max-width: 400px;
	margin-bottom: 50px;
}

#educationIntro a{
	font-weight: 600;
	text-decoration: none;
	color: #2200FF;
	transition: color 0.3s;
}

#educationIntro a:hover{
	color: #FF00AA;
}

.educationArticle{
	max-width: 45%;
	box-sizing: border-box;
	float: left;
	margin-top: 7px;
	margin-bottom: 20px;
}

.educationArticle a img{
	max-width: 100%;
	transition: filter 0.3s;
}
.educationArticle a img:hover{
	filter: brightness(40%);
}

.articleTitle{
	font-size: 20px;
	font-weight: 700;
	color: #2200FF;
	margin: 10px 0 3px 0;
}

.articleSubtitle{
	font-size: 20px;
	font-weight: 400;
	margin: 0;
	margin-bottom: 5px;
}

.articleCaption{
	margin: 0;
	font-weight: 400;
	font-size: 12px;
}

.articleText{
	font-size: 15px;
}

.secondColumn{
	margin-left: 50px;
}

.beforeFooter{
	margin-bottom: 50px;
}

@media(max-width: 725px){
	.articleSubtitle br{
		display: none;
	}

	.educationArticle{
		max-width: 48%;
	}

	.secondColumn{
	margin-left: 20px;
	}
}



@media(max-width: 700px){
	#educationIntro a{
		font-size: 15px;
	}
}

@media(max-width: 600px){
	.educationArticle{
		max-width: 95%;
	}
	.secondColumn{
	margin-left: 0px;
	}

	.articleTitle, .articleSubtitle{
		font-size: 17px;
	}

	.articleCaption{
		font-size: 10px;
	}

	.articleText{
	font-size: 13px;
	}
}


@media(max-width: 400px){
	#educationIntro a{
		font-size: 12px;
	}
}






/* cores:

azul: #2200FF
magenta: #FF00AA
cinza: #A0A09F

*/
