body{
    background-color: white;
    width: 100%;
  margin: 0;
  padding: 0; /* Hide horizontal scrollbar */
    overflow-x: clip;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 100%;
}
* {
    box-sizing: border-box;
}
.container-fluid{
      display: flex;
  place-items: center;
  height: 100vh;
    max-width: 100%;
      justify-content: center;
  align-items: center;
}

.intro_row{
    max-height: 100vh;
    max-width: 100vw;
    background-color: white;
    align-items: center;
    text-align: center;
}

.intro_anchor{
    height:100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro_image{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.clickable-area_guitar, .clickable-area_watches, .clickable-area_gallery {
   position: absolute;
   cursor: pointer;
   z-index: 1000;
   background-color: transparent;
   transition: background-color 0.3s ease;
   display: flex;
   justify-content: center;
   align-items: center;
}

.clickable-area_watches {
   top: 50%;
   left: 0;
    width: 50%;
   height: 50%;
}

.clickable-area_gallery {
   top: 50%;
   left: 50%;
   width: 50%;
   height: 50%;
}

.clickable-area_guitar {
   top: 0;
   left: 0;
   width: 100%;
   height: 50%;
}

.clickable-area:hover,
.clickable-area:active {
   background-color: rgba(0,0,0,0.5);
}

.menu-selection {
  opacity: 0;
  transition: opacity 0.3s ease;
    color: black;
    font-size: 20vh;
}

.clickable-area:hover .menu-selection,
.clickable-area:active .menu-selection {
  opacity: 1;
}





.carousel-item {
    justify-content: center;
    align-items: center;
}



.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.card{
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    margin-right: 1rem;
    width: 18.75rem;
    background-color: #194155;
    border: solid white;
}

.card-body{
    flex-grow: 1;
    color: inherit; /* this will prevent anchor tags from turning blue */
    text-decoration: none;
}

.card a{
    color: white; /* this will prevent anchor tags from turning blue */
    text-decoration: none;
}

.listings{
    display: flex;
    justify-content: center;
    align-items: center;
/* this will remove the underline from the anchor tag */
}

.index_container{
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .intro_row{
        align-items: center;
        width: 100vw;
    }

    .clickable-area_guitar, .clickable-area_watches, .clickable-area_gallery {
       position: absolute;
       width: 100%;
       height: 33.33vh;
       left: 0;
       overflow: hidden;

       /* Flexbox for centering */
       display: flex;
       justify-content: center;  /* Center horizontally */
       align-items: center;  /* Center vertically */
    }

    .menu-selection{
        font-size: 20vw;
        text-align: center; /* Ensure the text is centered horizontally */
    }

    .clickable-area_guitar {
        top: 0;
        width: 100vw;
    }

    .clickable-area_watches {
        top: 33.33vh;
    }

    .clickable-area_gallery {
        top: 66.66vh;
    }
}