/*  */
/*header {  }*/

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&display=swap');

html, body {
  height: 100%;
}

.container {
  display: flex;
  min-height: 100vh; /* fyller hele skjermen */
}

body {
  margin: 0;
  font-family: Verdana, sans-serif;
}

/* Header */
header {
  background-color: white;
  color: black;
  padding: 15px;
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;      /* centers vertically */
  height: 180px;            /* give header height */
}
header img {
  max-height: 180px;   /* control logo height */
  width: auto;
  display: block;
}


/* Layout container */
.container {
  display: flex;
}

.top-links {
  background-color: #444;
  display: flex;
  padding: 10px 20px;
  gap: 20px;

  font-family: 'UnifrakturCook', cursive;
}

.top-links a {
  color: white;
  text-decoration: none;
  font-family: 'UnifrakturCook', cursive;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 1px;
}

.top-links a:hover {
  color: #ffcc00;
}

/* Sidebar */


.sidebar {
  background-image: url("images/background.png");
  background-repeat: repeat-y;
  background-position: right top;
  background-size: auto;
  padding-right: 40px;

  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.sidebar a {
  color: black;
  text-decoration: none;
}

.sidebar a:visited {
  color: black;
}

.sidebar a:hover {
  color: #ffcc00;
}

.sidebar a:active {
  color: #ffcc00;
}


/*updates */
.update-box {
  background-color: #222;        /* dark box background */
  border: 2px solid #ffcc00;    /* golden border matching highlight */
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;            /* rounded corners */
  box-shadow: 0 0 10px #ffcc0033; /* subtle glow effect */
  color: #eee;
  font-family: 'Press Start 2P', cursive; /* match your headings */
}
.update-box h4 {
  margin-top: 0;
  color: #ffcc00;
  text-shadow: 1px 1px 2px #000;
}
.update-box p {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px 0;
}