html {
    background-image: url("imgs/ZLOTO.png");
    font-family: "Open Sans", sans-serif;
    background-color: #000;
}

.title {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    margin: 2rem;
    border: 2px solid black;
}

.products {
    margin: 2rem;
}

.products-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;
    margin-bottom: 2rem;
}

.products-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

@media screen and (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
    }
}

.product {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-image > img {
    image-rendering: pixelated;
}

.product-btn > button {
    border: 2px solid #000000;
    border-radius: 7px;
    padding: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.product-btn > button:hover {
    background-color: #000000;
    color: #ffffff;
}

.product-price > p {
    font-size: 0.4rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.product-price > h5 {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.product-info > h3 {
    text-align: center;
}

.product-info > h6 {
    text-align: center;
}

.product-image > img {
    /* animate it so it rotates */
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.footer {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;
    margin: 2rem;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.footer > * {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
    }
}

.footer-info > ul {
    list-style-type: none;
    text-align: center;
}

.products-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.products-header > h6 {
    margin: 0;
}

.footer-info > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.warning {
    position: sticky;
    bottom: 1rem;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;
    justify-content: center;
    display: flex;
    align-items: center;
}

.best-clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid black;

    margin: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.best-clients > .clients {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;

    align-items: center;
    justify-content: center;
}

.client > img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid black;
}

.client > h6,
.client > h5 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .best-clients > .clients {
        grid-template-columns: 1fr;
    }
}

.footer {
    margin-bottom: 8rem;
}

.enchanted {
    color: #9d27be;
}

.opinion {
    /* make it italic */
    font-style: italic;
    padding-top: 20px;
}