body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertikal sentrering */
  align-items: center;     /* Horisontal sentrering */
  text-align: left;
  max-width: 100vW;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00c3ff;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

footer {
  width: 100vW;               /* Tar hele bredden */
  text-align: center;        /* Sentrerer teksten horisontalt */
  font-size: 0.8rem;
  color: #777;
  margin-top: auto;
  padding: 1rem 0 1.5rem 0;
  border-top: 1px solid #333;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #00c3ff;
  color: #121212;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00a5d1;
}

.logo {
  width: 400px;
  height: auto;
  padding: 50px;
}