html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
}
img {
    display: block;
    width: 100%;
    height: 100%;
}

   .blog-container {
      padding: 10px;
      border-top: 1px solid #D87A05;
      background: linear-gradient(180deg,#9e3f03,#9b3203,#631c04);
    }
    
    .blog {
            padding: 10px 10px;
            background: rgba(0,0,0,0.3);
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            border-radius: 8px;
            line-height: 1.5;
        }
        
        .blog h2 {
            font-size: 24px;
            text-align: center;
            font-weight: 600;
            margin-bottom: 10px;
            color: gold;
        }
        .blog h1 {
            font-size: 28px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 10px #000;
            color: yellow;
        }
        .blog h3 {
            font-size: 20px;
            color: #ffe680;
            font-weight: 600;
        }
        
        .blog h4 {
            font-size: 18px;
            color: #ffe680;
            font-weight: 600;
        }
        .blog p {
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.7;
            color: #fff;
        }
        .blog a {
            text-decoration: none;
        }
        .blog ul {
            font-size: 16px;
            color: #eab676;
        }
        
        .blog ol {
        	font-size: 16px;
        color: #eab676;
        }
        
        .blog strong {
        color: #e4e854;
        }
        
        .blog hr {
        color: #D87A05;
        }
        
        .blog table {
        font-size: 16px;
        color: #eab676;
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        background: rgba(0,0,0,0.3);
        }

         table th, table td {
         padding: 12px;
         border: 1px solid #fff;
         text-align: center;
         }

          table th {
           background: gold;
           color: #000;
           }
           }