@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* top-bar */
.top-bar {
  position: fixed;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  padding: 5px 40px;
  border-radius: 5px;
  align-items: center;
  background-color: rgba(245, 245, 246, 0.6); /* #f5f5f6 */
  overflow: hidden;
}
.logobox {
	flex: 40%;
}
.logo {
	padding:2px 20px;
	border-radius: 10px;
  font-family: "Noto Sans", serif;
  font-size: 30px;
  font-weight: 750;
  text-decoration: none;
  color: rgba(230, 202, 172, 0.9); /* #e6caac */
  background-color: rgba(230, 224, 219, 0.45); /* #f5f5f6 */
  cursor: pointer;
}

/* links */
.linkbox {
	flex: 30%;
}
.bar-links {
	display: flex;
	margin-right: 70px;
	justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
.bar-links li a {
  align-items: center;
  display: flex;
  padding: 5px 20px; 
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: rgba(133, 89, 79, 1); /* #85594f */
  font-weight: 700;
}

.bar-links li a:hover{
  background-color: rgba(218, 197, 175, 0.65); /* #dac5af */
}
