
button {
    background-color: whitesmoke;
    margin-left: 10px;
    border-radius: 0px;
    padding: 10px;
    width: 90px;
    transition: transform 0.2s ease;
    font-family: alata;
    font-size: 15px;
    text-decoration: none;
}

.flex-container-meny {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bakgrund1 {
    width: 100%;
}

body, html {
    margin: 0;
    padding: 0;
}

.container-omoss {
    position: relative;
    width: 100%;
}

.text-omoss {
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
    transform: translate(-50%, -50%);
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.86);
    font-family: alata;
}

button:hover {
    background-color: #c5c5c5;
    transform: scale(1.1);
    cursor: pointer;
  }

.recensioner {
    text-align: center;
    font-family: alata;
}

h2, h1, h3, p {
    font-family: alata;
}

.profilbild, .profilbild2 {
    width:100px;
    height: 100px; 
    border-radius: 60px;
}

.recension_stars {
    width: 160px;
    height: 80px;
}

.profilbild {grid-area: menu;}
.recension1 {grid-area: main;}
.recension_stars {grid-area: right;}
.walther_text {grid-area: footer;}


.recension {
    display: grid;
    grid-template-areas: 
    "menu main right tom"
    "menu footer footer footer";
    padding-left: 150px;
    padding-right: 150px;
}

.profilbild2 {grid-area: menu;}
.recension2_namn {grid-area: main;}
.recension_stars {grid-area: right;}
.recension2_text {grid-area: footer;}

.recension2 {
    display: grid;
    grid-template-areas: 
    "menu main right tom"
    "menu footer footer footer";
    padding-left: 150px;
    padding-right: 150px;
    margin-bottom: 100px;
}

.container-faq {
    position: relative;
    width: 100%;
}

.faq {
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
    transform: translate(-50%, -50%);
    border-radius: 0px;
    background-color: rgba(255, 255, 255);
    font-family: alata;
}

.faq h1 {
    text-align: center;
}

.question:hover {
    cursor: pointer;
}

.question {
    font-size: 20px;
    display: inline-block;
    position: relative;
}

.answer {
    display: none;
}

.bil {
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 500px;
    margin: 30px;
}

.bil img {
    width: 500px;
    height: 250px;
    object-fit: cover;
}

.pris {
    font-size: 18px;
    font-weight: bold;
}

#produkter-body {
    background-color: rgb(233, 233, 233);
}

#jamfor-body {
    background-color: rgb(233, 233, 233);
}

#kontakt-body {
    background-color: rgb(233, 233, 233);
}

.produkter {
    display: grid;
    grid-template-columns: auto auto;
    margin-right: auto;
    margin-left: auto;
}

.bil:hover {
    transform: scale(1.05);
}

.bil {
    transition: transform 0.2s ease;
}


.kontaktform {
    width: 430px;
    margin-left: 100px;
    margin-top: 50px;
    font-family: alata;
    background-color: white;
    margin-bottom: 60px;
}

.orderform {
    width: 430px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    font-family: alata;
    background-color: white;
    margin-bottom: 60px;
}

#productDisplay {
    display: flex;
    gap: 20px; 
    margin-top: 30px;
}

#product1Info {
    display: none;
}
#product2Info {
    display: none;
}
#product3Info {
    display: none;
}
#product4Info {
    display: none;
}

.valj {
    display: flex; 
    justify-content: center;
    gap: 40px; 
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.valj div {
    text-align: center;
}

select {
    width: 200px;
    padding: 10px;
    font-size: 16px;
    font-family: alata;
}

.passwordsubmit {
    border-radius: 0px;
    height: 30px;
}

.textarea_form {
    border-radius: 0px;
    height: 150px;
    width: 400px;
    border-width: 2px;
    border-color: black;
}

.form_namn {
    border-radius: 0px;
    border-color: black;
    border-width: 2px;
    width: 200px;
    height: 27px;
    margin-top: 20px;
}

.form_email {
    border-radius: 0px;
    border-color: black;
    border-width: 2px;
    height: 27px;
    width: 412px;
    margin-top: 5px;
}

::placeholder {
    font-family: alata;
}

.flex-container-kontakt {
    display: flex;
    justify-content: space-around;
}

.kontakta_oss {
    margin-top: 40px;
    margin-right: 90px;
}

.footer {
    display: flex;
    justify-content: space-around;
    background-color: black;
    color: white;
    padding: 50px;
}

.footer a {
    font-size: 23px;
    font-family: alata;
    color: white;
}

.mobil-knapp,
.mobil-meny {
  display: none;
}

@media screen and (max-width: 768px) {
  .flex-container-meny {
    display: none;
  }

  .mobil-knapp {
    display: block;
    background-color: lightgray;
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }

  #menyToggle:checked + .mobil-knapp + .mobil-meny {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    z-index: 11;
  }
}

@media screen and (max-width: 768px) {
    .text-omoss,
    .faq {
      width: 90%;
      padding: 20px;
      position: static;
      transform: none;
      margin: 20px auto;
    }
  
    .container-omoss,
    .container-faq {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }

.mobil-meny a {
    color: black;
    font-family: alata;
}

.mobil-knapp {
    font-family: alata;
}
