
html, body {
    font-family: 'Georgia', serif;
    background-color: #f0e6d2;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}
header {
    text-align: center;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1577968897411-6973c2e2452a?q=80&w=880&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 100%;
}

header h1 {
    font-family: 'Georgia', serif;
    color: #ffffff;
    text-shadow: #8b580b 0 0 10px;
    font-size: 2.5rem;
} 

header p {
    font-family: 'Georgia', serif;
    color: #7a5c5c;
} 

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}


h2, h3 {
    text-align: center;
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

p {
    text-align: center;
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
}

span {
    color: #810101;
    font-weight: 700;
}

i {
    color: #575c5d;
    font-size: 14px;
    font-weight: 300;
    line-height: 0;
}

/* Prisboxar.
även beställningsrutan är inkluderad i denna klass: */
      .pricing-container {
        display: flex;
        flex-direction: row;
        padding: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        }

      .pricing-plan {
        background-color: #f6f3ed;
        border: 2px solid #0000001f;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        margin: 5px;
      }

      .plan-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        font-family: "Sono", sans-serif;

      }

      .plan-price {
        font-size: 16px;
        margin-bottom: 5px;
      }

      .plan-features {
        display: flex;
        flex-direction: column;
        list-style-type: none;
        padding: 0;
        margin-bottom: 10px;
        text-align: left;
        align-items: flex-start;
      }

      .plan-button {
        background-color: #810101;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-size: 16px;
        text-decoration: none;
        min-width: 100%;
      }

      .plan-button:hover {
        background-color: #810101d4;
      }

      form {
        background-color: #f6f3ed;
        border: 2px solid #0000001f;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 5px;
        text-align: center;
        }

      @media (max-width: 700px) {
        .pricing-container {
          flex-direction: column;
          padding: 10px;
          justify-content: center;
        }
        .pricing-plan {
            width: 100%;
          max-height: max-content;
          align-self: center;
          justify-self: center;
          margin-top: 20px;
          }

        form {
          width: 90vw;
          max-height: max-content;
          flex: 1 1 90vw;
          align-self: center;
          justify-self: center;
          margin: 0;
          }
        }



.plan-features {
    justify-self: center; 
    text-align: center;
}



label {
    display: inline-block;
    margin-bottom: 10px;
    font-family: sans-serif;
    color: #333;
            align-self: center;

}


.thumbnail {
    width: 180px;
    height: auto;
    border-radius: 10%;
    margin-bottom: 10px;
    align-self: center;
    max-height: 180px;
    object-fit: cover;
}

button {
        background-color: #810101;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-size: 16px;
        padding: 10px 20px;
        text-decoration: none;
        flex: 0 0 auto;
        max-height: fit-content;
        align-self: center;
    }
button:hover {
    background-color: #810101d4;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

ul#order {
    list-style-type: disc;
    margin-top: 20px;
}

li {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #074445;
    margin-bottom: 10px;
}

select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: auto
}

footer {
    text-align: center;
    padding: 5px;
    background-color: #f6f3ed;
    margin-top: 40px;
}

