@font-face {
    font-family: 'Pizzeria';
    src: url('assets/fonts/pizzeria.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('assets/images/stars.gif');
    background-repeat: repeat;
    background-color: #000;
    color: #00ff00;
    font-family: 'Comic Sans MS', cursive;
    margin: 0;
    padding: 20px;
    text-align: center;
    cursor: url('assets/images/cute_cursor.gif'), auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header, section, footer {
    max-width: 800px;
    margin: 0 auto;
}

.header-gif {
    max-height: 100px;
    margin: 0 10px;
}

h1 {
    font-family: 'Pizzeria', 'Comic Sans MS', cursive;
    font-size: 90px;
    color: #ff00ff;
}

h1, h2, h3 {
    color: #ff00ff;
}

a {
    color: #00ccff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.4;
    font-size: 24px;
}

.info table {
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    max-width: 50%;
}

.image-container {
    position: relative;
    display: inline-block; /* Ensure containers are inline */
}

.frame-overlay {
    position: absolute;
    top: 0px;
    left: 90px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery img {
    max-width: 75%;
    height: auto;
    margin: 0 10px;
    padding-top: 50px;
    transition: transform 0.5s ease;
}

/* .image-gallery img:hover {
    transform: rotateY(180deg);
} */

.visitor-counter {
    border-top: 2px solid #00ccff;
    padding-top: 10px;
}

img {
    image-rendering: pixelated;
}

.spay-gif-container {
    position: fixed;
    top: 10px;
    right: 10px;
}