@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

*{
    padding: 0px;
    margin: 0px;
}

body{
background: 0F1621;
background: linear-gradient(0deg, #202d41 0%, rgba(70, 82, 114, 1) 100%);
min-height: 100vh;
}

.HamburgerMenuOn{
     display: block;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.26);
    height: 150px;
    opacity: 0;
    animation: show 0.1s ease forwards;
    position: fixed;
    width: 100%;

        -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top: #ffffff85 2px solid;
    padding-top: 10px;
    z-index: 10;
}

@keyframes show {
  100% {
    opacity: 1;
    transform: none;
  }
}

.HamburgerMenuOff{
    display: none;
}

.navBar{
    height: 100px;
    background-color: rgba(0, 0, 0, 0.26);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logoHeader{
    color: white;
    font-family: "Azeret Mono", monospace;
    margin-left: 25px;
}

.navButtonList{
    display: flex;
    text-decoration: none;
    list-style: none;
    color: white;
    margin-left: auto;
    margin-right: 25px;
}

.listItemMain{
    padding-left: 15px;
    padding-right: 15px;
    font-family: "Azeret Mono", monospace;
    font-size: 20px;
    font-weight: bold;
}

.listItem{
    padding-bottom: 15px;
    font-family: "Azeret Mono", monospace;
    font-size: 20px;
    font-weight: bold;
}

.hamburgerButton{
    display: none;
}


.copyrightText{
text-align: center;
color: white;
font-size: 15px;
font-family: "DM Mono", monospace;
margin-bottom: 50px;
margin-top: 50px;
}

.a{
    color: white;
    text-decoration: none;
    transition: ease 0.4s;
}

.a:hover{
    color: rgb(159, 174, 255);
}

.blogSection {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 0 20px;
}

.blogHolder {
    width: 80%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blogCard {
    background-color: rgba(255, 255, 255, 0.03);
    border: #b9b9b90a 2px solid;
    border-radius: 10px;
    transition: 0.5s ease;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.blogCard:hover {
    box-shadow: 0px 0px 39px rgba(0, 0, 0, 0.548);
    transform: translateY(-5px);
}

.blogTitle {
    color: white;
    font-family: "Azeret Mono", monospace;
    font-size: 2rem;
    margin-bottom: 5px;
}

.blogDate {
    color: rgba(255, 255, 255, 0.6);
    font-family: "DM Mono", monospace;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blogIMG {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blogContent {
    color: white;
    font-family: "Azeret Mono", monospace;
    font-size: 18px;
    margin-bottom: 20px;
}

.blogCat {
    display: inline-block;
    padding: 8px 20px;
    border: #ffffff30 1px solid;
    color: white;
    font-family: "Azeret Mono", monospace;
    border-radius: 100px;
    margin-top: auto;
    align-self: flex-start;
    font-size: 14px;
}

@media (max-width: 1150px) {

.splitDiv{
    flex-direction: column;
}

.imgHolder{
    justify-content: center;
}

.tomPicture{
    padding: 0px;
    margin-top: 50px;
}

}

@media (max-width: 900px) {

.blogHolder {
        grid-template-columns: 1fr;
        width: 90%;
    }
    
    .blogTitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 750px) {

.hamburgerButton{
display: block;
}

.listItemMain{
    display: none;
}

}

@media (max-width: 500px) {


.hamburgerButton{
display: block;
}

.listItemMain{
    display: none;
}


}