@import url(../index.css);

.blogpost-wrapper{
    padding: 70px 0;
}

.blog-header-wrapper{
    height: 89vh;
    display: flex;
    align-items: center;
}

.blog-header-wrapper::before{
    content: '';
    background-image: url(../Blog\ Background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.3;
}

.blog-inner-wrapper{
    -webkit-box-shadow: 0px 0px 8px 3px rgba(179,179,179,1);
    -moz-box-shadow: 0px 0px 8px 3px rgba(179,179,179,1);
    box-shadow: 0px 0px 8px 3px rgba(179,179,179,1);
    height: 700px;
    width: 650px;
    margin: 40px 0;
    padding: 0;
}

.blog-inner-wrapper img{
    width: 100%;
    padding: 0;
}

.creating-ice-candy{
    display: none;
}

.blog-inner-wrapper p, .blog-inner-wrapper h4{
    margin: 20px;
}

.blog-inner-wrapper p{
    text-align: justify;
}

.blogpost-wrapper-inner{

}

.notice{
    background: red;
    color: white;
    position: sticky;
    top: 80px;
    z-index: 100;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
  }

  @media (max-width:600px) {
    .blog-inner-wrapper{
        height: 620px;
    }
  }

  @media (min-width:600px) and (max-width:800px) {
    .blog-inner-wrapper{
        height: 650px;
    }
  }