/***** BLOG PAGE STYLING *****/
@font-face {
  font-family: LemonMilk;
  src: url("../css/LEMONMILK-Regular.otf");
}

:root {
  --theme-color-1: #343a56;
  --theme-color-2: #1A1313;
  --theme-color-3: #226371;
  --theme-color-4: #6acaa7;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    background-color: var(--header-color-4);
}

.blog-gallery {
    min-height: calc(100% - 100px);
    margin-bottom: -100px;
    padding-top: 100px;
    font-weight: 600;
    text-align: center;
    flex-wrap: wrap;
    /* overflow-y: auto; */
    background-image: linear-gradient(to bottom, #343a56, #373047, #352838,
    #2f202b, #271a1f, #291c22, #2c1f26, #2e2129, #372e3f, #363f55, #2d5167, #226371);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.blog-gallery .container{
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding-top: 50px!important;

}

.blog-gallery .row{
    width: 80%;
    margin: auto;
}

.blog-gallery h3{
    /* padding: 10px; */
    font-family: LemonMilk;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 22px;
}

.blog-gallery .card{
    border-radius: 5px;
    box-shadow: 2px 2px 5px 0px black;
    overflow-y: hidden;
    background-color: #3C3C3C !important;
}

.blog-gallery .card-body{
    background-color: #3C3C3C;
}

/* Link styling */
.blog-gallery a {
  color: var(--theme-color-4);
}
.blog-gallery a:visited {
  color: var(--theme-color-4);
}
.blog-gallery a:hover {
  color: hotpink;
}
.blog-gallery a:active {
  color: hotpink;
}

.blog-gallery .btn {
    border-color: var(--theme-color-4);
}

.blog-gallery .btn:hover {
    border-color: var(--theme-color-4);
    background-color: transparent;
}

@media only screen and (max-width: 1000px) {
    .blog-gallery {
        top: 130px;
    }
    .blog-gallery h3{
        font-size: 16px;
    }
}
