
html {
  margin:0;
  padding:0;
}

body {
  background-color: #fffef3;
  margin: 0;
  padding: 0 10px;
  min-height:100vh;
  
  /*lock footer down */
  display: flex;
  flex-direction:column;
}




.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;

}

.title-with-lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(1.60);
  transform-origin: center;
  margin-top: 150px;
  
  display: flex;
  align-items: center;
  gap: 12px;
  width: 50%;
  max-width: 1000px;
}

.nav-line {
  flex-grow: 1;
  height: 1px;
  transform: scaleY(0.5);
  opacity: 0.4;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding:0;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.nav-links a:hover{
  color: grey;
}

.nav-title {
  margin: 0;
  white-space: nowrap;
  font-family: 'MonteCarlo',cursive;
  font-size: 70px;
  font-weight: 50;
  display: inline-block;
  color:#b80808;
  
}

.nav-line {
  flex-grow: 1;
  height: 1px;
  background-color: #b80808;
  transform: scaleY(0.5);
  opacity: 0.5;
  
}

.home-content {
  text-align: center;
  padding-top: 100px;
  flex-grow: 1;
}

.portfolio-content {
  text-align: center;
  min-height:100vh;
}

.entries-content {
  text-align: center;
  min-height:100vh;
}

.yogi-journal-content {
  text-align: left;
  min-height:100vh;
  
}

.running-content {
  text-align: left;
  min-height: 100vh;
}

.entries-title {
  text-align: center;
  font-family: 'MonteCarlo',cursive;
  font-size: 70px;
  font-weight: 100;
  color: #b80808;
  margin-bottom: 0;
}

.yogi-title {
  text-align: center;
  font-family: 'MonteCarlo',cursive;
  font-size: 70px;
  font-weight: 100;
  color: #b80808;
  margin-bottom: 0;
}

.portfolio-title {
  text-align: center;
  font-family: 'MonteCarlo',cursive;
  font-size: 70px;
  font-weight: 100;
  color: #b80808;
  margin-bottom:0;
}

.running-title {
  text-align: center;
  font-family: 'MonteCarlo',cursive;
  font-size: 70px;
  font-weight: 100;
  color: #b80808;
  margin-bottom:0;
}

.footer p {
  margin-bottom: 0;
  padding-bottom: 15px;
  font-size:13px;
}

.footer {
  text-align: center;
  margin-top:100px;
  margin-bottom:0;
  padding-bottom:10px;
}

.footer-email {
  color: blue;
  text-decoration: underline;
}

.footer-email:hover{
  color:black;
}


.home-pic {
  display: inline-block;
  border-radius:4px;
  border: 1px solid #4C4E4E;
  padding-bottom:0;
}

.yogi-entry {
  text-align:center;
  margin:0;
}

.yogi-entry-titles {
  padding-top:10px;
  font-size:19px;
  text-align:center;
  text-decoration: underline;
  
}

.yogi-pic {
  text-align: center;
  display: inline-block;
  border-radius:4px;
  border: 1px solid #4C4E4E;
  padding-bottom:0;
}

.running-entry-text {
  margin: 0 auto;
  text-align: left;

}

.running-entry {
  text-align:left;
  margin:0;
}

.running-entry-titles {
  padding-top:0px;
  font-size:15px;
  text-align: left;
  text-decoration: underline;
  
}

.running-pic {
  text-align: center;
  display: inline-block;
  border-radius:4px;
  border: 1px solid #4C4E4E;
  padding-bottom:0;
}

.running-line {
  align-self:stretch;
  height: 1px;
  background-color: #b80808;
  transform: scaleY(0.5);
  opacity: 0.5;
  
}

.running-container {
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:12px;
}

.running-container h1 {
  margin:0;
}




