*{
	margin: 0;
	padding: 0;
  }
  body{
	min-height: 100vh;
	/* background: url('laptop.jpg'); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .nav-container{
	backdrop-filter: blur(5px);
	box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.3);
  }
  nav{
	background-color: rgba(255,255,255,.5);
	box-shadow: 3px 3px 5px;
	position: absolute;
	position: fixed;
	z-index:1;
	width: 100%;
	backdrop-filter: blur(12px);
	
  }
  nav ul{
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
  }
  nav li{
	height: 50px;
  }
  nav a{
	height: 100%;
	padding-right: 30px;
	padding-left: 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: black;
	font-weight: bold
  }
  nav a:hover{
	background-color: #f0f0f0;
  }
  nav li:first-child{
	margin-right: auto;
  }
  .sidebar{
	position: fixed;
	top: 0; 
	right: 0;
	height: 100vh;
	width: 180px;
	background-color: rgba(200,200,200 , 0.9);
	backdrop-filter: blur(12px);
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.3);
	list-style: none;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	z-index: 0;
	animation-name: menu-slide-in;
	animation-duration: 0.2s;
	animation-timing-function: ease-in-out;
	
  }

  @keyframes menu-slide-in{
	from{
		transform: translateX(+180px);
	}
	to{
		transform: translateX(0px);
	}
  }

  .navbar-logo{
	height: 50px;

	
  }
  .sidebar li{
	width: 100%;
	
  }
  .sidebar a{
	width: 100%;

  }
  .menu-button{
	display: none;
  }
  @media(max-width: 700px){
	.hideOnMobile{
	  display: none;
	}
	.menu-button{
	  display: block;
	}
}

.nav-padding{
	padding-top: 80px !important;
}
