@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');
@import url("//cdn.web-fonts.ge/fonts/alk-tall-nusxuri/css/alk-tall-nusxuri.min.css");

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

body {
    background: url('grunge-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'VT323', monospace;
    color: #fff;
    text-align: center;
}

/* Navigation Bar */
nav {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

nav ul li a:hover {
    color: #ff6600;
}

header {
    padding: 100px 20px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    font-family: 'Press Start 2P', cursive;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.product {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.product:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px rgba(255, 255, 0, 0.8);
}

.product img {
    width: 100%;
    max-width: 250px; /* Ensures the image doesn't get too large */
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 3em;
    color: #ffcc00;
    text-shadow: 2px 2px 5px black;
}

h2 {
    margin-top: 10px;
    font-size: 1.4em;
    font-family: "ALK Tall Nusxuri", sans-serif;
}

p {
    font-size: 1.2em;
    font-weight: bold;
    font-family: "ALK Tall Nusxuri", sans-serif;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

/* Fix for small screen */
@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
    }
}
.tos-content{
    color: black;
    font-family: "ALK Tall Nusxuri", sans-serif;
}
.ulul{
    font-size: large;
}
.jin{
    font-family: "ALK Tall Nusxuri", sans-serif;
    color:#ffcc00;
}