/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: #222 url(theme/files/dark_wall.png) repeat;
  color: #eee;
  line-height: 1.6;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  /* border-bottom: 2px solid #444; */
  padding-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 15px;

  display: flex;
  justify-content: flex-end; /* force alignment to the right */
  align-items: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 0; /* was 10px — remove for alignment */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #ccc;
  text-transform: uppercase;
  /* font-weight: bold; */
  /* font-family: 'Open Sans', arial, sans-serif; */
}

nav ul li a:hover {
  color: #fff;
}

main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

footer {
  padding: 50px 0;
  text-align: center;
  color: #666;
  border-top: 1px solid #333;
}
