body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}
  
header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
  
header img {
    width: 150px;
}
  
.site {
    position: relative;
    text-align: center;
    color: #fff;
    background: url('img/cuisine2.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-overlay{
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px; 
}
  
.site h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3984d4;
}
  
.site p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
  
.site a {
    padding: 15px 30px;
    background-color: #ff7f50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}
  
.site a:hover {
    background-color: #e76a3a;
}

.text-block {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    text-align: center;
}
  
.product-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
}

  
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    animation: none;
}
  
.product-card img {
    max-width: 50%;
    border-radius: 8px;
}
  
.product-card a {
    text-decoration: none;
    color: inherit;
}
  
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}
  
footer a {
    color: #ff7f50;
    text-decoration: none;
}
  
footer a:hover {
    text-decoration: underline;
}