body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
  }
  
  .container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #05f3fc;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0, 60, 170);
    border-radius: 8px;
  }
  
  h1 {
    text-align: center;
    color: #000000;
  }
  
  .updates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .update-card {
    width: 48%;
    margin-bottom: 20px;
    background-color: #1a2634;
    box-shadow: 0 0 5px rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .update-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fffafa;
  }
  
  .update-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .update-version, .update-date {
    font-size: 14px;
    color: #ffffff;
  }
  
  .update-version {
    text-align: right;
  }
  
  .update-date {
    text-align: left;
  }
