body {
    margin: 0;
    padding: 0;
    background-image: url('kocka_chess.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
  }
  
  .projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .projects-content {
    background-color: rgba(0, 0, 0, 0.55); 
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .projects-content a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .projects-content a:hover {
    color: #ffd700; 
    transform: scale(1.1);
  }
  