body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #000; 
  }
  
  .magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 50px;
    background: #0a0a0a;
  }
  
  .mag-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .mag-card:hover {
    transform: scale(1.05);
  }
  
  .mag-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .mag-card h3 {
    margin: 10px 0 5px 0;
    font-size: 1.2rem;
  }
  
  .mag-card p {
    margin-bottom: 15px;
    color: #aaa;
  }
  