*{
    box-sizing: border-box;
}

/*  CSS Variables  */
:root {
    --IBItext: rgb(153, 153, 153);
    --IBIgrey: #2f2f2f;
    --IBIyellow: #ffc700;
}



html {
    font-family: 'Times New Roman', Times, serif;
    color: var(--IBItext);
}

body {
    background-color: black;
    margin: 0px;


}

.navbar ul {
    list-style-type: none;
    background-color: var(--IBIgrey);
    padding: 0% 0% 2% 0%;
    margin: 0%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.navbar a {
    text-decoration: none;
    color: var(--IBIyellow);
    padding: 16px;
    text-align: center;

}
@media screen and (max-width: 600px) {
  .navbar {
    display: none;
  }}

  .navblock ul {
    list-style-type: none;
    background-color: black;
    padding: 0% 0% 2% 0%;
    margin: 0%;
   
    
}
.navblock a {
    text-decoration: none;
    color: var(--IBIyellow);
    padding: 16px;
    display: block;
    text-align: left;

}
@media screen and (min-width: 600px) {
  .navblock {
    display: none;
  }}

h2 {
    text-align: center;
}

h1 {
    text-align: center;
    background-color: var(--IBIgrey);
    color: var(--IBIyellow);
    padding: 2%;
    margin: 0%;
}

img {
    max-inline-size: 100%;
}

main textpage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100v;
}


.aboutimage {
    max-width: 390px;
    float: left;
    margin-right: 20px;

}


section {
    min-width: 0px;
    padding: 10px;
}

@media screen and (min-width: 500px) {
    body {font-size: 18px;}
}

.container {
    margin: 100px auto;
    width: 75%;
}


.gallery {
    display: flex;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;

}

.photo img {
    color: black;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 20px solid;
    object-fit: cover;


}

@media(max-width:800px){
    .gallery{
        flex-direction: column;
    }
}

.shopblurb {
    text-align: center;
}

.shopcontainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 100px auto;
    width: 75%;
}

.shopcard {
    width: 300px;
    background-color: black;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgb(167, 167, 167);
    margin: 20px;
}

.shopcard img {
    width: 100%;
    height: auto;
}

.shopitem {
    padding: 10px;
}

.shopitem h3 {
    color: var(--IBIyellow);
    font-size: larger;
    margin-bottom: 5px;
}
.shopitem p {
    color: var(--IBItext);
}

.shopitem .btn {
    display: inline-block;
    justify-content: end;
    padding: 8px 16px;
    background-color: var(--IBIgrey);
    text-decoration: none;
    border-radius: 5px;
    margin-top: auto;
    color: var(--IBIyellow);
}