*{
    box-sizing: border-box;
}
body{
    background-color: #101314;
    font-family: sans-serif;
    color: #e9ecef;
}
body {

    animation: fadeIn 2s;
  
  }
  
  
  @keyframes fadeIn {
  
    0% {
  
      opacity: 0;
  
    }
  
    100% {
  
      opacity: 1;
  
    }
  
  }

  .Naslov{
    display: flex;
    -align-items: center;
    font-size: 70px;
    -text-align: center;
    -border: wheat 5px solid;
    height: 740px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
  }
  a {
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    position: relative;
    z-index: 0;
    transition: all 0.4s ease;
  }
  
  a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #FF9800;
    z-index: -1;
    border-radius: 12px;
    transform: scale(0);
    transition: transform 0.4s ease;
  }
  
  a:hover::before {
    transform: scale(1); /* Granica raste oko linka */
  }
  
  a:hover {
    color: #FF9800; /* Boja teksta se mijenja */
    transform: scale(1.05); /* Lagano povećanje linka */
  }