body {
    background: var(--background);
    margin-left: 25px;
}
:root {
    --background: #bcbcbc;
}
*{
    transition: all 0.3s ease;
}
.title {
    font-family: 'Comic Sans MS';
    color: #000000;
    font-weight: bold;
    text-align: center;
    font-size: 40px;
}
.sub {
    font-family: 'Arial', sans-serif;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.product {
    background: #333333;
    color: white;
    padding: 12px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'COmic Sans MS';
}
.buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}
.buy-button:hover {
    background-color: #37893a;
    font-weight: bold;
    text-decoration: none;
    scale: 1.1;
}