@import url('https://cdn.rawgit.com/mirazmac/bengali-webfont-cdn/master/solaimanlipi/style.css');
@import url('https://fonts.googleapis.com/css?family=Hind');

html, body {
  font-family: 'SolaimanLipi','Hind', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
}

.fixed-header {
  width: 100%;
  display: flex;
  position: fixed;
  width: 100%;
  height: 65px;
  background-color: #453943;
  top: 0px;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 2px 2px 2px #2E2F2F;
     -moz-box-shadow: 2px 2px 2px #2E2F2F;
     -webkit-box-shadow: 2px 2px 2px #2E2F2F;
}

.logo-container {
  width: 50%;
}

#header-img {
	height: 50px;
  object-fit: contain;
  margin-left: 30px;

}
#nav-bar {
  height: 65px;
  width: 50%;
	display: flex;
  justify-content: flex-end;
	align-items: center;
}
.nav-link {
  color: #ed8320;
  margin-right: 30px;
}

article {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    margin-top: 65px;
}

article > p {
    grid-column: 2;
    letter-spacing: .05rem;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    line-height: 1.4;
    color: rgba(0,0,0,.84);
    margin-bottom:-.2em;
}

article > img {
  grid-column: 2;
  display: block;
  margin: auto;
}

/*blockquote > p {
  font-size: 20px !important;
} */

h1 {
  font-family: 'Hind';
  text-align: center;
  font-size: 56px;
  font-weight: 300;
  grid-column: 2;
}

a {
  text-decoration: none;
}
.top-image {
  grid-column: 1 / -1;
}
.top-image > img {
    height: 600px;
    width: 100%;
    object-fit: cover;

}

.chapter-nav {
  display: flex;
  margin: auto;
  width: 60%;
  padding: 10px;
  margin-top: 30px;
}

.nav-name {
  font-size: 25px;
  color: #453943;
  margin: auto;
  font-family: 'Hind';
}

.triangle-right {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-left: 50px solid #453943;
	border-bottom: 25px solid transparent;
}

.triangle-left {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid #453943;
	border-bottom: 25px solid transparent;
}

/* Small screens */
@media only screen and (max-width: 900px) {
article {
  grid-template-columns: 10% 80% 10%;
}
article > p {
  font-size: 24px;
 }
}

