body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  background-image: url('/files/icon.png'); /* Replace with your image path */
  background-repeat: repeat; /* This makes the image repeat */
  background-size: 120px 120px; 
  background-position: top left;
  padding: 0;

}

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    pointer-events: none; /* Allows clicks to pass through */
    z-index: -1;
  }




/*************************/
/*    Styling  Header    */
/*************************/
header {
  background-color: #216cd9;
  color: white;
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
}

#top-header{
        
    text-align: center;
    height: 10px;
}

/****************/    
/* Styling Logo */
/****************/
#logo{
    float: none;
    height: 80px;
    width: 30%;
}

#logo img{
    width: 60%;
    float: left;
    padding: 10px 0px;
}    

/***************************/
/* Styling Navigation Menu */
/***************************/
#menu{
    float: none;
    width: 70%;
    height: 100%;
}
    
#menu ul{
    text-align: center;
    float: right;
    background: #216cd9;
}
    
#menu li{
    display: inline-block;
}
    
#menu li a, #menu li span{
    display: inline-block;
    padding: 0em 1.5em;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 60px;
}
    
#menu li a{
        
    color: #FFF;
}
    
#menu li:hover a, #menu li span{
    background: #FFF;
    color: #0074D9;
    border-left: 1px solid #0074D9;
    text-decoration: none;
}

/*************************/
/*    Styling  Post   */
/*************************/


    
.container{    
    /* Set width of container to 
        1200px and align center */
    margin: 00px auto;
    width: 1200px;
}


.post {
  background-color: white;
  font-family: 'Courier New', serif;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  
}


.post h2 {
  color: #0077cc;
  margin-top: 0;
}

.post .date {
  color: gray;
  font-size: 0.9em;
  margin-bottom: 10px;
}


footer {
  background-color: #eee;
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
}


ol {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

li {
  margin-bottom: 10px; /* Espaço entre os itens */
  font-size: 18px;
}

