body {
	margin: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

#top-nav {
	box-sizing: border-box;
	width: 100%;
	position: sticky;
	top: 0px;
	padding: 20px 40px;
	backdrop-filter: blur(2px);
}

#nav-container {
	display: flex;
  justify-content: space-between;
  width: auto;
  height: auto;
}

#nav-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.6rem;
}

#nav-links {

}

.nav-btn {
	height: 35px;
	width: 35px;
	cursor: pointer;
}

.github {
	background-image: url(../assets/github-mark/github-mark.svg);
	border-radius: 50%;
  border: none;
}

.image {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#project_container {
	width: 750px;
  height: 1024px;
}

.project_card {
	height: 110px;
  width: 250px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  font-size: 1.4rem;
}

.project_card:hover {
	transform: scale(1.05);
}

.project_card:active {
	transform: scale(0.95);
}