
body {
    background-color: white;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


.container {
    max-width: auto;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}



h1 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
}

h2, h3 {
    color: black;
    margin-top: 25px;
}


p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
}


.bilde {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.hero {
    background: #eeeeee;
    padding: 80px 20px;
}

.strek {
    width: 50px;
    height: 2px;
    background: #1a1a1a;
    margin: 12px auto 0;
}

.parent-tabell{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.child-tabell{
  display: grid;
  grid-template-columns: 1fr 1fr; /* Defines its own internal columns */
  gap: 10px;                     /* Defines its own spacing */
}

/* Forsidens hero: bakgrunnsbilde med et mørkt lag for lesbar tekst. */
.home-hero {
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url("../img/bryggen.jpg") center / cover #24313b;
}

.home-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.home-hero h1 {
    color: white;
}
