body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fff;
}

header {
    background-color: #ffe5d9;
    padding: 20px;
    text-align: center;
}

#logo {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

main {
    padding: 15px;
}

section h2 {
    font-size: 1.5em;
    color: #333;
    margin: 10px 0;
    background-color: #f0f0f0;
    padding: 10px;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.recipes {
    width: 75%;
    height: auto;
}

#featured-drink a {
    text-decoration: none; /* Removes underline from the link */
    color: inherit; /* Inherits the color from the parent element */
}

#featured-drink a:hover {
    color: rgb(88, 0, 0); /* Changes the color to navy on hover */
}

.recipe-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.recipe {
    background: #f7f7f7;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.recipe h2 {
    font-size: 1.2em;
    color: rgb(6, 107, 141);
}

.recipe a {
    text-decoration: none;
    color: inherit;
}

.recipe img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe p {
    font-size: 1em;
    margin-top: 10px;
}

.accordion section {
    cursor: pointer;
    transition: max-height 0.2s ease-out;
}

.panel img {
    max-height: 25%;
    max-width: 25%;
}

.accordion .panel {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}


footer {
    background-color: #ffe5d9;
    color: #333;
    text-align: center;
    padding: 10px;
}
