*, *::after, *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: inherit;
}

button {
    display: inline-block;
}

.body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a, a:hover{
    text-decoration: none;
    color: #000;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.products {
    margin-bottom: 60px;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.products-header {
    margin-top: 90px;
    margin-bottom: 40px;
}

.products-title-1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.products-subtitle {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    row-gap: 40px;
    list-style-type: none;
    margin-bottom: 30px;
}

.product {
    width: 270px;
    height: 400px;
    text-align: center;
}

.product-image {
    height: 330px;
    overflow: hidden;
}

.old-price {
    color: #999999;
    margin-right: 5px;
}

.new-price {
    color: red;
    font-weight: 700;
}

.product-title {
    font-weight: 400;
    font-size: 24px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.button, .product-title, .footer-link {
    font-family: 'Times New Roman', Times, serif;
    color: #999999;
}

.button {
    background-color: white;
    border: 1px solid #F72464;
    border-radius: 5px;
    padding: 16px 32px;
    margin-bottom: 30px;
}

.button:hover {
    cursor: pointer;
}

.footer {
    background-color: #000;
    padding: 20px 40px;
    color: white
}

.footer-link {
    color: inherit;
    margin-right: 10px;
    font-weight: 400;
    font-size: 14px;
}

.footer-link:last-child {
    margin-right: 0;
}

.footer-link:hover {
    color: yellow;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-link {
    margin: 24px 8px;
}

.social-link:hover{
    scale: 1.2;
    transition: 0.4s;
}