.fredoka-400 {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

:root {
    --primary-color: #a1e9c3;
    --secondary-color: #52443a;
    --background-color: #c2d6c9;
    --highlight-color: #ffc7af;
}
body {
	font-family: "Fredoka", sans-serif;
	color: #52443a;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 400;
    background-image: url("/img/flourwithflavour-background-opacity-20-500px.png");
    background-repeat: repeat;
}
section {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px;
    padding: 20px;
}
article {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--highlight-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

.container {
    max-width: 960px;
    justify-content: center;
    margin: 0 auto;
}
h1, h2, h3 {
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 10px;
}

.order-button-container a {    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    text-decoration: none;
}
.order-button-container a:hover {
    color: var(--secondary-color);
    background-color: var(--highlight-color);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.order-button-container a:visited {
    color: var(--highlight-color);
}
.order-button-container a:visited:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 360px;
    border-radius: 10px;
}

header .header-image {
    max-width: 320px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px;
    text-align: center;;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--highlight-color);
}

@media (max-width: 960px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
    }
}