.jacquard-12-regular {
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-style: normal;
}

.new-rocker-regular {
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
}

/* unvisited link */
a:link {
  color: #ffc8c8;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: #a4452e;
}

/* selected link */
a:active {
  color: #fab4b4;
}

body {
    cursor: url(cursors/star.png), auto;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2%;
    background-image: url("https://neocitiesimagesst.carrd.co/assets/images/image12.jpg?v=0b2b667b"); /* Sets an image as the background for the entire page */
}


.grid-container {
    cursor: url(cursors/star.png), auto;
    background-image: url("https://neocitiesimagesst.carrd.co/assets/images/image14.jpg?v=a2bb2923");
    margin: 10px;
    display: grid;
    width: auto;
    height: auto;
    padding: 65px;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 2em;
    border: solid 5px #691400;
    grid-template-areas:
        "box-1 box-1 box-1"
        "box-2 box-2 box-2"
        "box-3 box-3 box-3";
}
.item {
    background-color: #c7c87d;
    overflow-wrap: break-word;
    font-size: 1.5vw;
    font-family: "New Rocker";
    max-height: auto;
    max-width: 3000px;
    border-width: 10px;
    border-style: solid;
    border-image: url("https://neocitiesimagesst.carrd.co/assets/images/image38.jpg?v=6d371074") 9 round;
}
    
h4 {
    text-align: center;
    color: #a4452e;
    text-shadow:
        1px 1px 2px #ffc9bc,
        0 0 25px #ffc8c8,
        0 0 5px #ffc8c8;
}

p {
    text-align: center;
    font-size: 1vw;
    color: #a4452e;
    padding: 20px;
    text-shadow:
        1px 1px 2px #ffc9bc,
        0 0 25px #ffc8c8,
        0 0 5px #ffc8c8;
}

ul {
    text-align:left;
    color: #a4452e;
    padding: 20px;
        text-shadow:
        1px 1px 2px #ffc9bc,
        0 0 25px #ffc8c8,
        0 0 5px #ffc8c8;
}

.header {
    font-family: "Jacquard 12";
    overflow:hidden;
    font-size: 3vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
         text-shadow:
        1px 1px 2px #000000,
        0 0 25px #ffb56a,
        0 0 5px #ffb178;
}

.hdrimg1 {
    border-radius: 4px;
    padding: 5px;
    width: 13vw;
    height: 12vw;
    margin: 1em;
}

.hdrimg1 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hdrimg2 {
    border-radius: 4px;
    padding: 5px;
    width: 13vw;
    height: 12vw;
    margin: 1em;
}

.hdrimg2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.intro{

}

* {
    box-sizing: border-box;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    margin: 5px;
}

.gallery-item {
    margin: 5px;
    border: 1px solid #ccc;
    width: calc(25% - 20px);
    border-width: 7px;
    border-style: solid;
    border-image: url("https://foollovers.com/mat/menu05/51a-none.gif") 9 fill round;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.gallery-item .desc {
    padding: 15px;
    text-align: center;
    color: #a4452e;
    font-size: small;
}

.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden;
  width: auto;
  word-break: break-word;
  background-color: #d9e557;
  color: #165416;
  text-align: center;
  padding: 20px 20px;
  border-radius: 2px;
  position: absolute;
    font-size: small;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 15px;
    /* Vertical Width */
    height: 15px;
    /* Horizontal Height */
}

/* Scrollbar Track Color */
::-webkit-scrollbar-track {
    background: #9cc5db;
    border-radius: 10px;
}

/* Scrollbar Thumb Color */
::-webkit-scrollbar-thumb {
    background: #a4452e;
    border-radius: 10px;
    border: 2px solid transparent;
}

/* Thumb Hover */
::-webkit-scrollbar-thumb:hover {
    background: #ffdbbc;
}

#float {
        text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
        font-style: italic;
        font-size: 2em;
        font-weight: bold;
        color: #ffdbbc;
        animation-name: floating;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    @keyframes floating {
        0% {
            transform: translate(0, 0px);
        }

        50% {
            transform: translate(0, 15px);
        }

        100% {
            transform: translate(0, -0px);
        }
    }       
    

@media (max-width: 300px) {
    .grid-container {
        grid-template-columns: auto;
        grid-template-rows: auto;
        height: auto;
        width: auto;
        grid-template-areas:
        "box-1 box-1 box-1"
        "box-2 box-2 box-2"
        "box-3 box-3 box-3";
    }
}

@media only screen and (max-width: 768px) {
  .gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 380px) {
  .gallery-item {
    width: calc(100% - 20px);
  }
}