* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    font-family: Cambria, serif;
}

/* Header styles */
header {
    background-color: #c8c8c8;
    width: 100%;
}

.header-stuff {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-family: Impact, sans-serif;
    font-size: xxx-large;
    color: #000000;
    margin-left: 0;
}

/* Nav styles */
nav {
    background-color: #e36bb5;
    padding: 20px 0;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 50px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-family: Cambria, serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

nav a:hover {
    color: #9b4b10;
}

/* Main content styles */
main {
    margin-top: 100px;
}

.cookie-images {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
    max-width: 1220px;
    margin-bottom: 80px;
}

.cookie-images img {
    max-width: 350px;
    height: auto;
    transition: transform 0.2s ease;
    margin: 0 -10px;
}

.cookie-images img:hover {
    transform: scale(1.2);
    position: relative;
}

/* Call to action button */
.cta-button {
    display: inline-block;
    margin: 64px auto;
    padding: 16px 64px;
    background-color: #000000;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Nordique Inline Regular', sans-serif;
    font-size: xx-large;
    font-weight: bolder;
    background: #000000;
    text-decoration: none;
    position: relative;
}

.cta-button::before {
    content: "BAKE HAPPINESS NOW";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, blue 0%, #e36bb5 100%);
    background-clip: text;
    color: transparent;
}

/* Recipe page specific styles */
.recipe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.recipe-content {
    text-align: center;
    margin: 0 auto;
}

.recipe-content h2 {
    font-family: Cambria, serif;
    font-size: 36px;
    color: #000000;
    text-align:center;
    margin-bottom: 30px;
}

.recipe-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}
.brand {
    width: auto;
    text-align: center;
    font-size: 18px;
    font-style:oblique;
    font-weight:bold;
    background-color: #e36bb5;
    padding: 20px;
    border-radius: 20px;
}

.ingredients, .instructions {
    width: 100%;
    text-align: left;
    max-width: 600px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.recipe-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.recipe-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Recipe page styles */
.recipe-title {
    text-align: center;
    margin-top: 100px;
    padding: 0 20px;
}

.recipe-title h2 {
    font-family: Cambria, serif;
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
}

.recipe-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.recipe-links a {
    font-family: Cambria, serif;
    font-size: 28px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.recipe-links a:hover {
    color: #e36bb5;
    text-decoration: underline;
}

.recipe-title p {
    font-family: Cambria, serif;
    font-size: 24px;
    color: #000000;
    line-height: 1.5;
}

.recipe-content ul,
.recipe-content ol {
    font-family: Cambria, serif;
    font-size: 18px;
    line-height: 1.6;
    margin-left: 20px;
}