@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #090809;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    margin: 80px auto 0;
    padding: 20px;
    text-align: center;
}

.hero-section {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

section p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.hero-content {
    padding: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.site-title {
    color: white;
    font-size: 36px;
    margin: 0;
    font-family: 'DM Sans', monospace, sans-serif;
    text-align: center;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0e0d0e;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 99;
}

a{
    text-decoration: none;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    padding: 20px;
    margin: 10px;
    font-size: 16px;
    background-color: rgb(22, 22, 22);
    box-shadow: 0 0 10px rgba(75, 75, 75, 0.836);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'DM Sans', monospace, sans-serif;
    transition: 0.2s;
    width: 80%;
    max-width: 250px;
}

.product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.836);
}

.product-name {
    font-size: 25px;
    margin: 10px 0;
}

.product-card img {
    max-width: 100%;
    border-radius: 5px;
}

footer {
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}