/* General styles */
body {
    font-family: "Courier New", Courier, monospace;
    background-color: #c0c0c0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #808080;
    padding: 5px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 5px;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    background-color: #c0c0c0;
    padding: 2px 5px;
    border: 1px solid #000;
}

nav ul li a:hover {
    background-color: #808080;
    color: #fff;
}

.neon-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.neon-sign img {
    max-width: 100%;
    height: auto;
}

.block-text {
    width: 50%;
    margin: 0 auto;
    text-align: justify;
    hyphens: auto;
}

#dog-cursor-wrapper * {
    cursor: inherit;
}

.visitor-counter-container {
    background-color: #808080;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.visitor-counter-container h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

.visitor-counter-container .visitor-counter {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Store styles */
.store {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 100px;
    max-width: 80%;
    margin: auto;
}

.product img {
  width: 150px; /* Adjust this value to the desired thumbnail size */
  height: auto;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.product h3 {
    text-align: center;
    color: #000; /* Change this to the desired text color */
    margin: 0;
    padding: 0;
}

.store-footer {
    text-align: center;
    padding: 20px 0;
}

.store-footer .centered-gif {
    display: inline-block;
    vertical-align: middle;
}

