body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #fffacb;
    width: 100%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #333;
}

.shopfront-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    padding: 10px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.product-item {
    background-color: #fff;
    border: 2px solid #fffacb;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    padding: 15px;
    transition: transform 0.2s;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    border-radius: 10px;
}

.product-item h2 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-item p {
    font-size: 1rem;
    color: #666;
}

.product-item button {
    background-color: #fffacb;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.product-item button:hover {
    background-color: #fff27a;
}

.support-container {
    background-color: #fffacb;
    border: 2px dashed #ffcc80;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite ease-in-out;
}

.support-container p {
    margin: 0 0 10px;
    color: #333;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
}

.support-container a img {
    width: 150px;
    transition: transform 0.3s;
}

.support-container a img:hover {
    transform: scale(1.1) rotate(-5deg);
}

/* Add a subtle bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.download-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.download-buttons button {
    background-color: #fffacb;
    border: 2px solid #ffcc80;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.download-buttons button:hover {
    background-color: #fff27a;
    transform: scale(1.05);
}

.btn-windows i {
    color: #333;
    /* Windows blue */
}
.btn-windows p {
    color: #333;
    /* Windows blue */
    font-size: 0.8rem;
}

.btn-mac i {
    color: #333;
    /* Neutral for Mac */
}

.btn-mac p {
    color: #333;
    /* Neutral for Mac */
    font-size: 0.8rem;
}

.btn-web p {
    color: #333;
    /* Neutral for Web */
    font-size: 0.8rem;
}