/* Osnovni stilovi */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    max-width: 600px;
    padding: 20px;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.8;
  }
  
  /* Stilovi za GIF covječića */
  .digger img {
    width: 200px; /* prilagodi veličinu po potrebi */
    height: auto;
    display: block;
    margin: 20px auto;
  }
  
  /* Kontakt podaci */
  .contact {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.7;
  }
  
  .contact a {
    color: #00bfff;
    text-decoration: none;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }