body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

#ascii-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.logo {
  width: 700px;
  margin-bottom: 2rem;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 1rem 0;
}

.links a {
  color: #0ff;
  text-decoration: none;
  font-size: 1.5rem;
}

.links a:hover {
  text-decoration: none;
}

.contact {
  margin-top: 4rem;
}

.contact a {
  color: #0ff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: none;
}

.logo-wrapper {
  background: rgba(0, 0, 0, 0.6); /* svart med 60% opacitet */
  display: inline-block;
  padding: 1rem;
  border-radius: 2px;
}
 
/* Befintlig stil bibehållen ovanför... */

/* --- Ny stil nedan --- */

/* För rubriker */
.section-title {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  border-bottom: 1px solid #0ff;
  display: inline-block;
  padding-bottom: 0.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* För responsive layout */
@media (max-width: 600px) {
  .content {
    padding: 1rem;
  }

  .links a,
  .contact a {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .logo {
    width: 140px;
  }
}

/* För smidig länkinteraktion */
a {
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
  color: #fff;
}
