:root {
  --light-bg: #f4ebe6;
  --light-fg: #140200;
  
}

@font-face {
  font-family: 'CMC-Baskervville';
  src: url('../fonts/CMC-Baskervville-Regular.woff2') format('woff2'),
       url('../fonts/CMC-Baskervville-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: var(--light-bg);
  color: var(--light-fg);
	text-align: center;
	line-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#titlecard {
  margin-bottom: 25vh;
  padding: 3em;
}

#site-title {
  font-family: 'CMC-Baskervville', sans-serif;
  font-size: clamp(3rem, 10vw, 4rem);
  font-weight: bold;
  line-height: 1;
}

#page_name {
  line-height: 200%;
}

#timezone, .timelink {
  color: var(--light-fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
}


.menu-list {
  font-family: sans-serif;
  font-weight: bold;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-top: 2px;
  display: inline-block;
  font-size: 1.375rem;
}

.menu-item + .menu-item::before {
  content: "|";
}

.menu-link {
  color: var(--light-fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
}

.menu-link:hover {
  border-bottom-color: var(--light-fg);
  opacity: 1;
}


#social-footer {
  position: fixed;
  bottom: 1.5rem;
  width: 100%;
  text-align: center;
}

#linkedin-icon {
  fill: var(--light-fg);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

#linkedin-icon:hover {
  opacity: 1;
}
