h1{
    color: white;
    text-align-last: center;
    background-color: blue;
    margin: 0;
    padding: 12px;
}
/* General page styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    color: #3d2920;
    text-align: center;
}

/* Header */
h1 {
    background-color: #8b4513;
    color: white;
    margin: 0;
    padding: 30px;
    font-size: 40px;
}

hr {
    width: 70%;
    border: none;
    border-top: 2px solid #d2a679;
    margin: 20px auto;
}

/* Introduction */
p {
    font-size: 18px;
    line-height: 1.6;
}

/* Main bakery image */
body > img {
    border-radius: 15px;
    margin: 20px;
    object-fit: cover;
}

/* Recipe sections */
h3 {
    font-size: 25px;
    color: #8b4513;
    margin-top: 30px;
}

/* Recipe images */
h3 + img {
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Certificate preview */
.certificate {
    margin: 40px auto 10px;
    padding: 20px;
    max-width: 850px;
    border-top: 2px solid #d2a679;
}

.certificate h3 {
    margin-top: 0;
}

.certificate a {
    display: block;
    padding: 0;
    background-color: transparent;
}

.certificate img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Recipe links */
a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #d2691e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* Link hover effect */
a:hover {
    background-color: #8b4513;
    transform: scale(1.05);
}

/* Button */
button {
    margin: 30px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background-color: #8b4513;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #d2691e;
}
