/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 12 2024 | 15:02:07 */
.masks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.mask-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 10px); /* Two items per row */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mask-item img {
    max-width: 100%;
    border-radius: 8px;
}

.mask-item h3 {
    font-size: 1.5em;
    margin-top: 15px;
}

.mask-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #caa65d;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.mask-btn:hover {
    background-color: #b29455;
}


