@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap");
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style: none;
      font-family: "Montserrat", sans-serif;
      
  }





  header{
    width: 100%;
    height: 80px;
    background-color: antiquewhite;
    text-align: center;
}

body{
    background-color: #585c68;
    color:antiquewhite;
}



.blogEntry{
    color:antiquewhite;
    justify-content: center;
    text-align: center;
}
.blogEntry a{
    color:antiquewhite;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.navbar{
    height: 100%;
    display: flex;
    
    
}

.nav-item {
    height: 100%;
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    
}

.nav-item li, a{
    padding: 0px 20px;
    font-weight: 500;
    display: inline-block;
    color: #444; 
    text-transform: uppercase;
    text-decoration: none;
    
}

.nav-item li{
    transition: all 0.3s ease 0s;
}

.nav-item a:hover{
    color: #0088a9;
}



.navbar{
    width: fit-content;
    display: inline-block;
    vertical-align: middle;
    padding: 0px 20px; 
}


.blog_title{
    text-align: center;
 
}

.body{
    
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    
}
.title_image{
    margin-left: 80px;
}
.paragraph{
   
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
    justify-content: center;
}
.image-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
  }
  
  .image-panel div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;  
    overflow: hidden;
  }
  
  .image-panel img {
    max-width: 80%; 
    height: auto;
    object-fit: contain;
  }