/* reset do css */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-size: auto 100vh;
	height: 100vh;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
}
header {
	display: flex;
	height: 100vh;
	text-align: center;
	color: #000;
	justify-content: center;
	align-items: center;
	background: url('../img/computer2.png') no-repeat center center/auto;
}
.menu {
	background-color: rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 100vw;
	top: 0; /*o top 0 fixa o nav no topo e só pode ser usado pq declaramos uma position*/
}
.menu ul li {
	display: flex;
}
.menu ul li a {
	text-decoration: none;
	color: #fff;
}
.menu ul {
	display: flex;
	justify-content: end;
}
.menu a {
	padding: 20px;
	display: block;
	transition: background-color 1s, color 1s;
}
.menu a:hover {
	background-color: white;
	color: black;
	text-decoration: underline;
}
.titulo {
	font-size: 3em;
}
.sub-titulo {
	font-size: 2em;
}
.portifolio {
	padding: 2em;
	height: 100vh;
	background-color: #262626;
}
.nome-portfolio {
	text-align: center;
}
.portifolio h2{
	font-size: 2em;
	color: #fff;
	margin-bottom: 30px;
}
.portifolio figure {
	text-align: center;
	color: #fff;
}
.img-portfolio {
	height: 200px;
	width: 340px;
	object-fit: cover;
	transition: transform 500ms;
}
.img-portfolio:hover {
	transform: scale(1.2);
}
.grid {
	display: grid;
	gap: 1em;
	grid-template-columns: repeat(2, 440px);
	justify-content: center;
}
.contato {
	text-align: center;
	height: 40vh;
	background-color: #F98080;
	color: #fff;
	padding: 2em;
	display: flex;
	justify-content: center;
	
}
.nome-contato {
	text-align: center;
	background-color: #F98080;
	color: #fff;
	padding: 2em;
	font-size: 2em;
}
.contato a {
	color: whitesmoke;
	padding: 15px;
	transition: text-shadow 1s;
}
.contato a:hover {
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
.sobre {
	text-align: center;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2em;
	background-color: #F98080;
}
.sobre-texto {
	width: 500px;
	margin-left: 20px;
	text-align: justify;
}
.img-port {
	width: 300px;
	height: 240px;
	object-fit: cover;
	border-radius: 50%;
}
