@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+25&display=swap');
.background {
    background-color: #00807F;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Stretch and scale the image to cover the container */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-position: center center;
    z-index: -1;
}

.container {
    padding-top: 40px;
    font-family: 'Times New Roman', Times, serif;
}

.navigation {
    border-width: 3px 3px 0 3px;
    border-style: solid;
    border-radius: 2px 2px 0px 0px;
    border-color: azure;
    background-color: #004f4d;
    box-shadow: 1px 1px 10px rgb(0, 0, 0);
}

.navigation_logo a {
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    text-shadow: none;
}

.navigation_logo a:hover {
    color: #ffffff;
    text-shadow: 2px 2px 5px  #ffc073;
}

.navigation_text a:hover{
    color: #ffffff;
    text-shadow: 2px 2px 5px  #ffc073;
}

.navigation_text a {
    text-decoration: none;
    font-size: 25px;
    font-family: 'MS PGothic';
    color: rgb(255, 255, 255);
}

.blog {
    border-width: 0 3px 3px 3px;
    border-radius: 0px 0px 3px 3px;
    border-style: solid;
    border-color: azure;
    max-height: 550px;
    background-color: #c3c3c3;
    box-shadow: 1px 2px 10px rgb(0, 0, 0);
}

.blogcontent {
    background-image: url(/images/polkadots.png);
    background-repeat: repeat;
    background-size: 30%;
    image-rendering: pixelated;
    font-family: 'MS PGothic';
    max-height: 400px;
    overflow: scroll;
    box-shadow: 1px 2px 8px rgb(0, 0, 0);
}

.blogcontent a{
    color: blue;
    font-size: 15px;
}

.blogcontent a:hover{
    color: black;   
}

.blogfooter {
    text-align: center;
}

.rainbow_text_animated {
    background: linear-gradient(0.2turn, #009479, #004f4d, #003232, #001d23, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 2s ease-in-out infinite;
    background-size: 500% 100%;
}

.Zero {
    color: #009479;
}

.Ranger {
    color: #dd5928;
}

@media only screen  and  (max-width:992px){ 
    .blog {
        max-height: 900px;
    }
    .blogcontent h5{
        max-height: 430px;
        font-size: 22px;
    }

    .blogcontent a{
        max-height: 430px;
        font-size: 18px;
    }

    .blogcontent {
        max-height: 430px;
        font-size: 17px;
    }

    .blogbox {
        scale: 95%;
        padding-bottom: 0px;
    } 

    .container {
        padding-top: 0px;
    }

    .backtoblog {
        font-size: 30px;
    }

    .rainbow {
        font-size: 30px;
    }
}