* {
	box-sizing: border-box;
}
body {
	background: var(--padrao);
  transition: .5s;
	min-height: 100vh;
	padding: 0;
	margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Oswald:wght@200;300;400;500&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&family=Oswald:wght@200;300;400;500&display=swap');



.hover-left {
  position: fixed;
  left: 0vw;
  bottom: 0vw;
  z-index: 99999999;
  width: 15vw;
  background-color: red;
  height: 80vh;
  opacity: 0;
  cursor: w-resize;
}

.hover-right {
  position: fixed;
  right: 0vw;
  bottom: 0vw;
  cursor: e-resize;
  opacity: 0;
  z-index: 99999999;
  width: 15vw;
  background-color: red;
  height: 80vh;
}


.o-left {
  bottom: 0;
  position: fixed;
  filter: blur(1vw);
  left: -10vw;
  width: 50vw;
  height: 10vw;
	background: var(--padrao);
  z-index: 99;
  transition: 0.5s;
}

.o-right {
  position: fixed;
  transition: 0.5s;
  filter: blur(1vw);
  z-index: 99;    
  bottom: 0;
  right: -10vw;
  width: 50vw;
  height: 10vw;
	background: var(--padrao);
}

.gallery {
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.cards {
	position: absolute;
	width: 40vw;
	height: 15vw;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
  
}

.cards li {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 40vw;
	height: 15vw;
	text-align: center;
	line-height: 18rem;
	font-size: 2rem;
	font-family: sans-serif;

	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.8rem;
}

.cards li span {
  color: white;
  color: var(--check);
}


.cards li span:cue {
  color: red;
}


.content {
  position: absolute;
  top: 40vh;
  left: 15vw;
  z-index: 9999999999;
  cursor: pointer;
}

.number {
  font-size: 5rem;
  position: absolute;
  top: 0.2vw;
  left: 1.5vw;
  opacity: 0.1;
  font-family: 'Montserrat';
  font-weight: 600;

}

.name {
  font-size: 1.5vw;
  font-family: raleway;
}

.actions {
	position: absolute;
	top: 84.5vh;
	left: 50vw;
  display: flex;
  gap: 10vw;
	transform: translateX(-50%);
}

.material-symbols-outlined {
  transform: scale(1.5);
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 998
}

button {
  display:inline-block;
  outline: none;
  border: none;
  padding: 8px 14px;
  background: none;
  color: var(--check);
  cursor: pointer;
}

button:hover {
  background: none;
  animation-name: buttonan;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes buttonan {
  0%   {transform: translateX(0px);}
  50%  {transform: translateX(5px);}
  100% {transform: translateX(0px);}
}
a {
  color: #88ce02;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.nav {
  display: flex;
  position: fixed;
  justify-content: center;
  width: 100vw;
  height: 10vh;
  justify-content:space-between;
}

.menu {
  width: 2.2vw;
  height: 1.5vw;
  opacity: 0.8;
  filter: invert(1);
  margin: 5vh 5vw;
}

.mail {
  width: 3vw;
  height: 3vw;
  opacity: 0.8;
  filter: invert(1);
  margin: 5vh 5vw;
}


.projectimg {
  cursor: pointer;
  box-shadow: 0 3px 30px rgb(0 0 0 / 0.2);

}


.menu-png {
  filter: invert(1);
  width: 10vw;
  height: 10vw;
}

.logo {
  left: 44vw;
  top: 3vh;
  color: var(--check);
  font-size: 2.1rem;
  font-family: raleway;
  position: fixed;
  text-align: center;
  font-weight: 200;
}

.surname {
  font-weight: 400;
  color: var(--check);
}