body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("../img/background.webp");
    background-size: cover;
    background-position: center;
  }
  
  .container {
    display: flex;
    height: auto;
  }
  
  .main {
    flex: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  
  .header {
    background-color: rgba(255, 255, 255, 0.8);
    color: #ff7300;
    font-size: 0.8em;
    padding: 0px;
    text-align: center;
    border-bottom: 2px solid #ddd;
  }
  
  .content {
    display: grid;
    grid-template-areas: "my-area update my-area2"
                          "my-area update my-area3";
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
  }
  
  .update {
    grid-area: update;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    word-break: keep-all;
    min-width: 540px;  
    overflow-y: auto;
    max-height: 750px;
  }
  
  .date {
    color: red;
    font-weight: bold;
    font-size: large;
  }
  
  .my-area,
  .my-area2 {
    background-color: rgba(255, 255, 255, 0.1);
    width: 300px;
    height: 250px;
    position: relative;
    z-index: 1000;
  }

  .my-area {
    grid-area: my-area;
  }
  .my-area2 {
    grid-area: my-area2;
  }
  .my-area3 {
    grid-area: my-area3;
    margin-top: -270px;
  }


  .footer-page {
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    width: 100%; 
    padding: 10px; 
    box-sizing: border-box; 
    bottom: 0;
  }
  

  .message {
    grid-area: message;
    position: absolute; 
    top: 10px; 
    left: 10px;
    min-width: 150px;
    opacity: 0; 
    transition: opacity 0.5s ease;
  }
  
  .message.show {
    opacity: 1; 
  }


.footer-links{
font-size:0.8rem; 
color:#a5a5a5;        
margin-bottom:4px;
}
.footer-links a{
color:#b0b0b0;
text-decoration:none;
}
.footer-links a:hover{color:#ffffff} 


.update {
  margin: 1em 0;
}
.update h2 {
  margin-bottom: .5em;
}
.update-link {
  display: inline-block;
  margin-bottom: 1em;
  color: #0078e7;
  text-decoration: none;
}
.update-group {
  margin-bottom: 1.5em;
}
.update-group .date,
.update-group .dateold {
  display: block;
  font-weight: bold;
  margin-bottom: .25em;
}
.update-group ul {
  padding-left: 1em;
  margin: 0;
}
.update-group ul li {
  margin-bottom: .25em;
}
