body {
  font-family: Arial, sans-serif;
  background-color: #fffbe6;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffbe6;
  border-bottom: 2px solid #ccc;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 24px;
}

.logo {
  height: 50px;
}

.socials {
  text-align: center;
  margin: 15px;
}

.socials a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.news {
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

.news-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 5px;
}