@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Lobster&family=Montserrat:wght@300;400&family=Open+Sans:wght@300&family=Poppins:wght@300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body{
  box-sizing: border-box;
  height: 180vh;
  background-image: linear-gradient(#a2d2ff,#fb8b24);
}
nav{
  display: flex;
  flex-direction: column;
  align-items: center;
}
span{
  background-color: black; 
  color: white;
  padding: 3px 7px;
  letter-spacing: 2px;
  font-size: 22px;
}
main{
  display: flex;
}
img{
  width: 100%;
  height: 100%;
}
.heading{
  margin: 20px 0px 10px;
  font-family: "Poiret One", cursive;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 2px;
}
.head-text{
  margin: 10px 0px 20px;
  font-family: "Lobster", cursive;
  font-weight: normal;
  font-size: 25px;
  letter-spacing: 1.2px;
}
.panel{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  height: 160vh;
  padding: 15px;
}
.left{
  width: 70%;
}
.right{
  width: 30%;
}
.blog{
  box-shadow: 4px 8px 10px -2px rgba(0,0,0,0.75);
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  width: 98%;
  justify-content: start;
  align-content: flex-start;
  height: auto;
}
.blog-image{
  width: 100%;
  height: 350px;
  margin-bottom: 15px;
}
.blog-heading{
  padding: 5px 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.blog-sub{
  margin-left: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.blog-content{
  margin-left: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 30px;
}
.button{
  margin-left: 10px;
  padding: 5px 8px;
  display: flex;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: space-between;
}
.read-button{
  border: 1.5px solid #000814;
  color: #000814;
  display: inline-block;
  padding: 15px 35px;
  transition: background-color 200ms ease-in-out;
}
.comment{
  color: #000814;
  display: inline-block;
  padding: 15px 35px;
}
.block-heading{
  background-color: lightgray;
  padding: 25px 25px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  letter-spacing: 1.5px;
}
.post-content{
  display: flex;
  border-bottom: 1px solid #000814;
  justify-items: start;
  align-items: center;
}
.post-img{
  width: 20%;
  height: 80px;
  padding: 15px;
}
.post-heading{
  display: flex;
  flex-direction: column;
  padding: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: normal;
  align-content: flex-start;  
}
.post-heading-content-h{
  font-weight: bold;
  margin-bottom: 10px;
}
.tag{
  display: flex;
  flex-direction: column;
}
.tags{
  display: flex;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: normal;
  align-content: flex-start;
}
.tag-content{
  margin: 10px;
  padding: 5px 10px;
  transition: 150ms ease-in-out;
}
.tag-content:hover,.tag-content:focus{
  background-color: black;
  color: white;
}