/* -------------- navigation section --------------- */
body{
  background-color: #212a30;
}
.name-title{
  color: white;
  float: left;
  margin-left: 0.5em;
  margin-top: auto;
  margin-bottom: auto;
}
.name-container{
      align-self: center;
}
.main-nav{
  background-color: black;
  height: 3em;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 50% 1fr;
  justify-content: center;
  gap:3em;
  z-index: 10;


}
.nav-list{
  display: flex;
  justify-content: center;
  gap:1em;
  height: 100%;
  margin: 0;
}
.nav-theme{
    color: white;
    font-size: 1em;
    margin-top: auto;
    margin-bottom: auto;
    list-style-type: none;
}


.nav-button{
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.nav-button:hover{
  background-color: white;
  color: black;
}
.nav-link{
  position: relative;
  top: 25%;
  align-self: center;
}


}
li{
  display: inline-block;

}


/* -------------- Titlesection --------------- */

header{
  width: 100%;
  text-align: center;
  display: block;
  padding-top:5em;
}

.main-title{
  width: 25em;
}


/* -------------- blog title section --------------- */

#blog-title-container{
    text-align: center;
    width: 100%;
    background-color: #91532c;
    height: 3em;
    outline: black solid 0.1em;
}

.blog-title{
  color: white;
  font-size: 2em;
}

/* -------------- shelf section --------------- */

.shelf{
  border: #91532c solid 1em;
  background-color: #512e19;
  display: flex;
  justify-content: space-around;
  outline: black solid 0.1em;
}

.BlogPostBox{
  background-color: #565656;
  border: black solid 0.3em;
  padding: 0.5em;
  height: 20em;
  display:  flex;
  align-content: center;
  flex-wrap: wrap;
  box-shadow: rgba(0, 0, 0, 0.15) 1em 0em 0.5em;
}
.blogLink{

  text-align: center;

  text-decoration: none;

}


.BlogPostText{
  background-color: white;
  color: black;
  writing-mode: vertical-rl;
  padding: 0.5em;
  transform: rotate(180deg);
  border: black solid 0.1em;

}


.description-box{
  margin-left: auto;
  margin-right: auto;
  width: 50%;

  padding: 1em;
  text-align: center;
}

.description-text{
  color: white;
}
