*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      background-color: #050505;
      color: #ffffff;
    }
    
    header {
      background-color: #050505;
      color: #ffffff;
      padding: 10px 0;
      text-align: center;
    }
    
    nav {
      background-color: #050505;
      padding: 10px 0;
      text-align: center;
    }
    
    nav a {
      color: #ffffff;
      text-decoration: none;
      padding: 10px 20px;
    }
    
    h1 {
      color: #ffffff;
    }
    
    .noticia-container {
      display: flex;
      justify-content: center;
      width: 80%;
      margin: 50px auto;
    }
    
    .noticia-text {
      padding-left: 20px;
    }
    
    .noticia-text p {
      font-size: 18px;
      line-height: 1.6;
      text-align: justify;
    }
    
    .btn-noticia a {
      text-decoration: none;
      background-color: #050505;
      color: rgb(255, 255, 255);
      padding: 10px;
      border-radius: 10px;
    }
    
    .btn-noticia {
      border-style: none;
      padding-top: 20px;
      background-color: transparent;
    }

    .preview-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 100px;
      border: 1px solid #050505;
      padding: 10px;
      margin-bottom: 20px;
    }

    .preview{
      width: 325px;
      background-color: #050505;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0, 2);
      margin: 20px;
    }
    .preview img {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
    }
    .preview-content h3 {
      font-size: 28px;
      margin-bottom: 8px;
    }
    .preview-content p {
      font-size: 15px;
      line-height: 1.3;
    }