/* Common styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: black no-repeat fixed center;
  background-size: cover;
  color: white;
}
main, #latests {
  text-shadow: -1.5px 0 black, 0 1.5px black, 1.5px 0 black, 0 -1.5px black;
}
/* Header styles */
header {
  background-color: #ffe4b5;
  padding: 4px;
  color: #000;
}

/* Navigation styles */
nav {
  background-color: #a92323;
  padding: 8px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
nav li {
  margin: 0 10px;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px;
  border-radius: 5px;
}
nav a:hover {
  background-color: #666;
}
#latests {
  text-align: right !important;
  position: fixed;
  bottom: 0pt; 
  right: 0pt;
  padding: 24px;
}
#latests a, #latests a:visited {
  text-decoration: none;
  color: #fff;
}