/*<link rel="preconnect" href="https://fonts.googleapis.com">
	<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
	<link href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">*/
* {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;

}



#topbar {
	display: inline-flex;
	align-items: center;
	background: rgb(237, 237, 243);
	width: 97.5%;
	height: 45px;
	padding: 10px;
	margin-left: 0.5vw;
	margin-top: 0.5vw;
	border-radius: 20px;
	font-size: 25px;
	font-family: "Inria Serif", serif;
		font-weight: 400;
		font-style: normal;
	box-shadow: 4px 4px 15px 2.5px rgb(157, 157, 163)
}

.links {
	border-radius: 10px;
	margin-left: 4.25%;
	justify-content: flex-end;
	padding: 7px;
	transition: 0.3s;
}

.links:hover {
	background-color: rgb(207, 207, 213);
	transition: 0.3s;
	cursor: pointer;
	transform: scale(1.05);
}

#logo {
	border-radius:100000px;
	background: rgb(195, 203, 211);
	width:40px;
	height:40px;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin-right: 56%;
}

	/* Container styles */
.wholething {
  /* Enables vertical scroll snapping */
  scroll-snap-type: y mandatory;
  /* Make the container full-screen */
  height: 100vh;
  /* Allow the container to scroll vertically */
  overflow-y: scroll;
  font-family: "Inria Serif", serif;
		font-weight: 400;
		font-style: normal;
}

/* Child page styles */
.scroll-page {
  /* Make each page take up the full screen */
  height: 100vh;
  /* Align the start of each page with the top of the container */
  scroll-snap-align: start;
  /* Add styling for visibility */
  display: flex;
  /*align-items: center;*/
  justify-content: center;
}

.header {
	margin-top: 3vh;
	font-size: 100px;
}

.marker {
	width:0.1px;
	height:0.1px;
}

.entries {
	/*display:inline-block;*/
	display: flex;
  align-items: center;
  /*gap: 10px;*/
  background-color: rgb(237, 237, 243);
  border-radius: 20px;
  padding: 20px;
  width: 80vw;
}

.whole_journal {
	display: block;

}

#projects {
	display:block;
}