body {
    background-color: #2E211D;
    padding: 5px;
    font-family: Caprasimo;
    font-weight: light;
}


.masthead { /* Adjusts image to make as background image and position text*/
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color:white;
    text-shadow: 2px 2px 2px #0002
}
    .h1 {
        font-size:4rem;
    }

    .color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0002;
}

@media (max-width: 768px ) { /*Adjusts image to different screen sizes*/
    .masthead {
        min-height: 30vh;
    }
    .h1 {
       font-size: calc(1.525rem + 3.3vw);
    }
}

.carousal-img { /* Needs tweaking - is not applying to image */
    height: 400px;
    width:100%;
    object-fit: cover;
    object-position: center;
}

.card-container {
    display: flex; /* Aligns child elements in a row by default */
    gap: 20px; /* Adds space between the cards */
    flex-wrap: wrap; /* Allows cards to wrap to a new line on smaller screens */
    margin: 0 auto; /* Centers the container */
    max-width: 1200px;
    padding: 20px;
}

.card {
    /* Styles for the individual card appearance */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 16px;
    background-color: #2E211D;
    border-radius: 5px;
    flex: 1; /* Allows the cards to grow and shrink to fill the width equally */
    display: flex; /* Makes the card itself a flex container */
    flex-direction: column; /* Stacks contents vertically */
}

/* Pushes the button to the bottom of the card for consistent alignment */
.card a {
    margin-top: auto;
    
}

.menu-page {
 box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 16px;
    background-color: #2E211D;
    border-radius: 5px;
    flex: 1; /* Allows the cards to grow and shrink to fill the width equally */
    display: flex; /* Makes the card itself a flex container */
    flex-direction: column;
}