/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #f5f5f5;
}

/* Header and Navigation */
header {
    background: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

header h1 {
    font-size: 1.5em;
    color: #f5f5f5;
}

header ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

header ul li {
    margin: 0;
}

header ul li a {
    text-decoration: none;
    color: #f5f5f5;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #76c7c0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #282828;
}

.hero h2 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    color: #a0a0a0;
}

/* Products Section */
.products {
    padding: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #76c7c0;
    color: #121212;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.product-card button:hover {
    background: #5da59d;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #1f1f1f;
    color: #a0a0a0;
}


.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    background: #76c7c0;
    color: #121212;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background: #5da59d;
    
}

#off-button {
    pointer-events: none;
    color: white;
    background-color: gray;
}

hr {
    height: 3px;
    background-image:linear-gradient(to right, red, rgb(0, 153, 255));
    border: none;
}

