/* Generelt */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(rgba(11, 29, 54, 0.85), rgba(11, 29, 54, 0.85)),
              url('img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Sørg for at container og innhold ligger over overlay */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: none;         /* Fjern blå boks */
  backdrop-filter: none;    /* Fjern blur */
  border-radius: 0;         /* Fjern runde hjørner */
  margin: 2rem;
}

/* Topptekst for feilkode eller sideoverskrift */
.error-code {
  font-size: 1.2rem;
  color: #8da9c4;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 3rem;
  font-weight: bold;
  color: #cfd8e4;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .contact-info {
    flex-direction: row;
  }
}

.column {
  background-color: #122b47;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Knapper */
.back-button,
.button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #0077cc;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.back-button:hover,
.button:hover {
  background-color: #005fa3;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #091624;
  color: #aaa;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 29, 54, 0.6); /* juster opacity her */
  z-index: 0;
}
