@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 18px;
  font-weight: 600;
  color: #9FA07F;
  background: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #4C4F3F;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #253030;
 	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* Handle */
::-webkit-scrollbar-thumb:hover {
  background: #1b2322;
 	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.title {
	display: inline-block;
	margin: 0 1%;
	font-size: 30px;
	margin-right: auto;
}

.a {
    text-decoration: none;
	margin-left: 1%;
	color: #9FA07F;
	font-size: 20px;
	display: inline-block;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.a:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	color: #fff;
	padding: 10px;
	background; blur(10x);
  	backdrop-filter: blur(10px);
	border-radius: 10px;
	border: 1px solud rgba(255, 255, 255, 0.18);
	box-shadow: 0 8ox 32px 0 rgba(0, 0, 0, 0.37);
}

.active {
	margin-left: 1%;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	padding:10px;
	font-size: 20px;
	background; blur(10x);
  	backdrop-filter: blur(10px);
	border-radius: 10px;
	border: 1px solud rgba(255, 255, 255, 0.18);
	box-shadow: 0 8ox 32px 0 rgba(0, 0, 0, 0.37);
}

.menu {
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1.5px;
	top: 0;
	position: fixed;
	width: 100%;
	display: inline-block;
	color: #9FA07F;
	z-index: 100;
	margin-top: 0.4%;
}





.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

@media (max-width: 768px) {
	.title {
		font-size: 20px;
	}
	.a, .active {
		font-size: 16px;
	}
	.a:hover {
		padding: 3px;
	}
  .menu ul {
    flex-direction: row;
    justify-content: space-between;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
	.title {
		font-size: 17px;
	}
	.a, .active {
		font-size: 15px;
	}
	.a:hover {
		padding: 2px;
	}
  .menu ul {
    flex-direction: row;
    justify-content: space-between;
    margin-right: 5px;
  }
}






.more-photos {
	color: #b4b4b4;
	transition: 0.5s;
}

.more-photos:hover {
	color: #4C4F3F;
	transition: 0.5s;
}

p {
	font-family: "Russo One", sans-serif;
}

.content {
	margin: 44% 0 0 0;
	background: #1b2322;
}

footer {
  background: #253030;
  color: #9FA07F;
  margin-top: 4%;
  padding: 40px 0 40px 0;
}

footer p {
  font-family: "Russo One", sans-serif;
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.fa-linkedin {
  text-decoration: none;
  color: #9FA07F;
  display: inline-block;
  padding: 4px 7px;
  font-size: 30px !important;
  transition: 0.5s;
}

.fa-mail {
  text-decoration: none;
  color: #9FA07F;
  display: inline-block;
  padding: 4px 5px;
  font-size: 30px !important;
  margin: 0 auto 10px 47.8%;
  transition: 0.5s;
}

.fa-linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-radius: 15%;
  transition: 0.5s;
}

.fa-mail:hover {
  background:linear-gradient(140deg, #D3D3D1, #6D7C81);
  color: #253030;
  border-radius: 15%;
  padding: 4px 5px;
  transition: 0.5s;
}