html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body{
    margin: auto;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.main_header {
    background-color: #424530;
    max-width: 100%;
}

.header_nav{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0.5rem;
}

img{
    max-width: 100%;
}

.logo img{
    display: block;
    max-width: 100%;
    max-height: 60px;
}

.menu {
    display: flex;
    gap: 2rem;
    height: 2.5rem;
}

li {
    padding-top: 0.5rem;
    text-decoration: none;
    display: block;
    color: #ffefcd;
}

a {
    text-decoration: none;
}

.menu__item1 a {
    color: #424530;
}

.menu__item2 a{
    color: #ffefcd;
}

.menu__item1 {
    height: 6rem;
    text-decoration: none;
    display: block;
    background-image: url(/assets/bookmark2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
}



.hero__container {
    background-image: url(../assets/headerbg.jpg);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.headertekst {
    color: #424530;
}

.heroimage img {
    max-width: 100%;
    max-height: 200px;
    display: block;
}


.why {
    text-align: center;
    padding: 2rem;
    background-color: #424530;
    
}

.titel h2 {
    color: #ffefcd;
    margin-bottom: 1rem;
}

.why_tekst {
    color: #ffefcd;
    line-height: 1.5rem;
    margin-left: 20%;
    margin-right: 20% 
}

.pricerise {
    padding-top: 2rem;
}

.pricerise img {
    max-width: 100%;
    max-height: 200px;
}

.pricerise p {
    color: #ffefcd;
    text-align: left;
    line-height: 1rem;
    margin: 0 auto;
    max-width: 220px;
    font-size: 10px;
}

.how{
    padding-top: 2rem;
}

.how_tekst {
    color: #ffefcd;
    margin-left: 20%;
    margin-right: 20% 
}

.openbook {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.openbook img {
    max-width: 100%;
    max-height: 200px;
}

.cta-button {
    margin-top: 20px; 
    background-color: #424530;
    color: #ffefcd;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.cta-button a {
    color: #ffefcd;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #635e59;
}