* {
    box-sizing: border-box;
    outline: none !important;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #ADD8E6; */
    /* background-color: #b7e1ee; */
    background-color: #c9ecf7;
}

.navH2 {
    outline: 2px solid red;
    /* margin-left: 16px; */
    width: 25%;
    margin: auto 0;
}

.navH2 img {
    width: 100%;
}

header {
    outline: 2px solid red;
    background-color: #f8f8f8;
    /* width: 100%; */
    /* padding: 12px; */
    /* position: relative; */
    /* padding-left: 12px; */
    /* padding-right: 12px; */
}

nav {
    outline: 2px solid blue;
    /* padding: 0 12px 0 12px; */
    background-color: (255, 255, 255, 0.5);
    width: 100%;
    color: white;
    /* text-align: center; */
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-radius: 12px;
    margin-top: 12px;
}

.navButtons {
    outline: 2px solid green;
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
    padding-right: 4px;
}

.showRaspaFlavorsBtn {
    outline: 2px solid blue;
    /* height: 100%; */
    margin: auto 0;
    padding: 16px;
}


.combosBtn {
    outline: 2px solid purple;
    /* height: 100%; */
    /* margin: auto 0; */
}


button {
    /* outline: 2px solid red; */
    background-color: #555;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

button:hover {
    background-color: #777;
}

#options {
    /* margin-top: 10px; */
    text-align: center;
    margin: auto 0;
    
}

.hidden {
    display: none;
}


#closeButton {
    position: absolute;
    right: 10px;
    top: 10px;
}

main {
    padding-top: 80px
}


.title_class {
    font-family: Roboto;
}

/* .snacks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
} */


.snacks {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two items per row */
    gap: 16px; /* Space between items */
    margin: 20px; /* Margin around the grid */
}


.snack-item {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    /* overflow: hidden; */
}

.snack-item p {
    font-size: 1.5rem;
}

.snack-item img {
    max-width: 75%;
    height: auto;
    border-radius: 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 12% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}



.navModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.navModal-content {
    outline: 2px solid purple;
    background-color: #fefefe;
    margin: 12% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
}

#modal1-content {
    outline: 2px solid lightcoral;
    /* text-align: center; */
    /* display: flex;
    flex-direction: column; */
}


#modal1-content h1 {
    outline: 2px solid blue;
    text-align: center;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
    padding-left: 30px;
}

#modal3-content h1 {
    outline: 2px solid blue;
    text-align: center;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
    padding-left: 30px;
}

#modal3-content {
    outline: 2px solid blue;
    text-align: left;
    /* border-bottom: 2px solid green; */
    /* padding-bottom: 12px;
    padding-left: 30px; */
} 

#modal3-content div {
    outline: 2px solid green;
    border-bottom: 1px solid black;
    /* text-align: right; */
} 
/* 
#modal3-content div:last-child {
    border: none;
} */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* When the width is at 443px, this media query will take into effect */
@media (max-width: 443px) {

    .navButtons {
        outline: 2px solid green;
        display: flex;
        flex-direction: column;
        /* padding-bottom: 12px; */
        width: 24%;
    }

    
    .showRaspaFlavorsBtn {
        outline: 3px solid purple; 
        /* height: 10%; */
        margin: 0 auto;
        /* width: 60%; */
        /* padding: none; */
        /* margin-right: 16px; */
        padding: 16px 0 16px 0; 
        font-size: 0.9rem;
    }

    .combosBtn {
        outline: 3px solid purple; 
        /* height: 10%; */
        /* width: 60%; */
        margin: 12px auto 0 auto;
        /* margin-right: 16px; */
        font-size: 0.9rem;
        /* text-align: center; */
        /* padding-right: 20px; */
        /* align-items: center; */
        /* align-content: center; */
    }


    .snack-item img {
        max-width: 85%;
        height: auto;
        border-radius: 5px;
    }

    header {
        outline: 2px solid purple;
        height: 15%;
    }
}