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

header {
    text-align: center;
    padding: 20px 0;
    background-color: black;
}

header h1 {
    color: rgb(252, 252, 219);
    text-shadow: 2px 2px 5px black;
    font-size: 3em;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.vegrecipe {
    padding: 20px;
}
.recipediv{
    padding: 30px;
    background: rgb(0,0,0);
    background: linear-gradient(198deg, rgba(41,4,4,0.8870141806722689) 0%, rgba(20,9,2,1) 100%);
}

.content{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: nowrap; 
}

.content.reverse {
    flex-direction: row-reverse; 
    justify-content: space-between; 
    gap: 0; 
}

.content.reverse .text {
    flex-grow: 1; 
    margin: 30px;
}


.content img {
    width: 400px;
    height: 300px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 15px 5px rgb(216, 216, 138); /* Glow effect */
    transition: box-shadow 0.3s ease;
    margin-right: 30px;
}

.content img:hover {
    box-shadow: 0 0 25px 10px rgb(255, 206, 127);}

.content h2 {
    color: yellow;
    text-shadow: 2px 2px 5px black;
    margin: 0 0 10px 0;
    font-size: 2em;
}


.content p {
    font-size: 1.4em;
    line-height: 2;
}


.vidbutton{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: yellow;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.vidbutton:hover {
    background-color: orange;
    transform: scale(1.05);
}

.vidbutton:active {
    background-color: darkorange;
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column; 
        align-items: center;
    }

    .content img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .content .text {
        text-align: center;
    }
}
strong{
    color: rgb(247, 224, 108);
}