@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    background-color: #2d2d2d;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 3px 3px 0px #000000;
    color: #72f198;
}

h2 {
    font-size 2rem;
    font-weight: bold;
    margin-bottom: 60px;
    text-shadow: 3px 3px 0px #000000;
    color: #55ff55;
}

h3 {
   font-size 1rem;
   margin-bottom:15px;
   text-shadow: 2px 2px 0px #000000;
   color: #8883f2;

}
.gif-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.clickable-gif {
    max-width: 400px;
    max-height: 400px;
    border: 4px solid #ffffff;
    cursor: pointer;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.side-gif {
    margin-left: 100px;
    margin-right: 100px;
 
}

.gif-link:hover {
    transform: scale(1.05);
}

.clickable-gif:hover {
    border-color: #55ff55;
    box-shadow: 0 0 20px rgba(85, 255, 85, 0.5);
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .clickable-gif {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .clickable-gif {
        max-width: 250px;
        max-height: 250px;
    }
}

.small-gifs {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.small-gif {
    max-width: 150px;
    max-height: 150px;
}

@media (max-width: 768px) {
    .small-gif {
        max-width: 100px;
        max-height: 100px;
    }

    .small-gifs {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .small-gif {
        max-width: 80px;
        max-height: 80px;
    }

    .small-gifs {
        gap: 10px;
    }
}
