    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f5f7fa;
      color: #333;
      scroll-behavior: smooth;
    }

     header {
    background: linear-gradient(to right, #000000, #3c3c3d);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  header h1 {
    font-size: 3rem;
  }

  header p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  #slogan {
    font-family: monospace;
    font-weight: 1000;
    position: absolute;
    top: 400px;
    left: 50px;
    
    background-image: radial-gradient(circle at 30% 110%,
      #ffdb8b 0%,
      #ee653d 25%,
      #d42e81 50%,
      #a237b6 75%,
      #3e57bc 100%);
    color: transparent;
    background-clip: text;
    transition: top 0.1s, left 0.1s;
  }
  @media screen and (max-width: 800px) {
    #slogan {
      font-size: 2.5em;
    }
    
  }
    @media screen and (min-width: 800px) and (max-width: 1039px) {
  #slogan {
    font-size: 1.8rem;
  }
}
  
  @media screen and (min-width: 1039px) and (max-width: 1322px) {
  #slogan {
    font-size: 2.5rem;
  }
  
}
@media screen and (min-width: 1322px) and (max-width: 1608px) {
  #slogan {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1609px) and (max-width: 1909px) {
  #slogan {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1910px) {
  #slogan {
    font-size: 5rem;
  }
}

#slogan-drugi-del {
  width: 33ch;
  font-family: monospace;
  font-weight: bold;
  position: absolute;
  top: 500px;
  left: 50px;
  background-image: radial-gradient(circle at 30% 110%,
    #ffdb8b 0%,
    #ee653d 25%,
    #d42e81 50%,
    #a237b6 75%,
    #3e57bc 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  overflow: hidden;
  border-right: .15em solid rgb(0, 255, 242);
  white-space: nowrap;
  letter-spacing: .15em;
  animation:
    typing 4s steps(26, end),
    blink-caret .75s step-end infinite;
}
@media screen and (max-width: 405px) {
  #slogan-drugi-del {
    font-size: 1.2em;
  }
  
}
@media screen and (min-width: 406px) and (max-width: 516px) {
  #slogan-drugi-del {
    font-size: 1.5em;
  }
  
}
@media screen and (min-width: 517px) and (max-width: 623px) {
  #slogan-drugi-del {
    font-size: 2em;
  }
  
}
@media screen and (min-width: 633px) and (max-width: 800px) {
  #slogan-drugi-del {
    font-size: 2.5em;}
  }
    @media screen and (min-width: 800px) and (max-width: 1039px) {
  #slogan-drugi-del {
    font-size: 1.1rem;
  }
}
  
@media screen and (min-width: 1039px) and (max-width: 1322px) {
  #slogan-drugi-del {
    font-size: 2rem;
  }
  
}
@media screen and (min-width: 1322px) and (max-width: 1608px) {
  #slogan-drugi-del {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1609px) and (max-width: 1909px) {
  #slogan-drugi-del {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1910px) {
  #slogan-drugi-del {
    font-size: 5rem;
  }
}

#represent{
  height: 720px;
   width:auto;
    border-radius: 20px;
}
/*@media screen and (max-width: 768px) {
  .represent {
    position: relative;
left: 50%;
  }
}*/
@media screen and (max-width: 408px) {
  .represent {
	
	
	height:400px;
	width:auto;
	left:0;
  }
}


  /* Tipkanje + brisanje (alternira naprej-nazaj) */
  @keyframes typing {
    from {
      width: 0ch
    }
    to {
      width: 33ch
    }
  }

  /* Utripajoča črtica (karet) */
  @keyframes blink-caret {
    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: #111;
    }
  }

  /* BALONČKI - animacija */

.bubble {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color, #7c3aed);
  width: var(--size, 80px);
  height: var(--size, 80px);
  opacity: 0.4;
  box-shadow:
    0 0 15px var(--color, #7c3aed),
    0 0 30px var(--color, #7c3aed),
    inset 0 0 8px #fff7ff44;
  filter: drop-shadow(0 0 6px var(--color, #7c3aed));
  animation: floatDance 15s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  z-index: 0;
  transform-origin: center center;
}

.bubble.large {
  opacity: 0.5;
  filter: drop-shadow(0 0 10px var(--color, #7c3aed));
  animation-duration: 18s;
}

/* Animacija s tekočim, mehkim premikanjem, rotacijo in pulzanjem */
@keyframes floatDance {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
    filter: drop-shadow(0 0 6px var(--color));
  }
  20% {
    transform: translate(600px, -50px) rotate(6deg) scale(1.04);
    opacity: 0.55;
    filter: drop-shadow(0 0 14px var(--color));
  }
  40% {
    transform: translate(-150px, 145px) rotate(-6deg) scale(0.96);
    opacity: 0.45;
    filter: drop-shadow(0 0 10px var(--color));
  }
  60% {
    transform: translate(200px, 300px) rotate(7deg) scale(1.05);
    opacity: 0.56;
    filter: drop-shadow(0 0 16px var(--color));
  }
  80% {
    transform: translate(-300px, -350px) rotate(-8deg) scale(0.97);
    opacity: 0.44;
    filter: drop-shadow(0 0 9px var(--color));
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
    filter: drop-shadow(0 0 6px var(--color));
  }
}



    .hero {
      text-align: center;
      padding: 4rem 2rem;
      ;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-button {
      margin-top: 2rem;
      padding: 1rem 2rem;
      background: linear-gradient(to right, #6a11cb, #2575fc);
      color: white;
      border: none;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      
    }
@media screen and (max-width: 347px) {
  .feature-card {
	padding:0.5rem 1rem;
  }
  
}


    .cta-button:hover {
      background: #1a5adf;
    }

:root {
  --primary-gradient: linear-gradient(90deg, #6a11cb, #2575fc);
  --bg-color: #f0f4ff;
  --card-bg: rgba(255, 255, 255, 1);
  --card-shadow: rgba(38, 57, 77, 0.1);
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --border-radius: 1.5rem;
  --transition-speed: 0.4s;
}
.features-grid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #000000, #3c3c3d);
  box-shadow: 0 0 15px #6a11cb, 0 0 30px #2575fc;
  animation: neonPulse 3s ease-in-out infinite;
  z-index: 1;
}

  


.features-grid {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px #444 inset;
}

.features-grid::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 20px),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent 70%);
  background-size: 100% 100%, 100% 100%, 300% 300%;
  background-blend-mode: overlay;
  mix-blend-mode: screen;
  animation: gridPulse 12s ease-in-out infinite;
  filter: brightness(1.2) contrast(1.05);
  opacity: 0.4;
}




.feature-card:last-of-type {
  margin-bottom: 200px;
}


.feature-card {
  background: transparent;
  padding: 2.5rem 2.5rem 3rem;
  position: relative;
  left: 100px;
  margin-top: 40rem;
  width: 30%; 
  
  backdrop-filter: saturate(180%) blur(20px);
  color: white;
  border-radius: 20px;
  display: block;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition-speed) ease;
}
@media screen and (max-width: 1100px) and (min-width: 773px) {
  .feature-card {
    width: 50%;
    left: 25%;
  }
  
}
@media screen and (max-width: 772px) {
  .feature-card {
    width: 70%;
    left: 15%;
  }
  
}

.mali-ekran {
  position: relative !important;
  left: 5%;
  display: block !important;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(106, 17, 203, 0.25);
  border-color: #6a11cb;
  outline: none;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.4rem;
  color: white;
  letter-spacing: 0.03em;

}
@media screen and (max-width: 773px) {
  .feature-title {
    font-size: 1.3rem;
  }
  
}

hr {
  border: none;
  height: 4px;
  width: 90px;
  background: var(--primary-gradient);
  border-radius: 3px;
  margin: 0 0 1.8rem 0;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: white;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.feature-read-more-button {
  align-self: flex-start;
  padding: 1.1rem 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  background: var(--primary-gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-speed) ease, background-position var(--transition-speed) ease;
  background-size: 200% 100%;
  background-position: left;
  user-select: none;
}

.feature-read-more-button:hover,
.feature-read-more-button:focus {
  background-position: right;
  box-shadow: 0 12px 28px rgba(37, 117, 252, 0.6);
  outline: none;
}

.feature-read-more-button:focus-visible {
  outline: 3px solid #2575fc;
  outline-offset: 4px;
}


.feature-read-more-button::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease, opacity 0.8s ease;
  opacity: 0;
  z-index: 0;
}

.feature-read-more-button:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition:  transform 0s, opacity 0.5s ease;
}

/* Responsive tweaks */
@media (max-width: 400px) {
  .feature-card {
    padding: 2rem 1.5rem 2.5rem;
  }
  .feature-title {
    font-size: 1.5rem;
  }
  .feature-description {
    font-size: 1rem;
  }
  .feature-read-more-button {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}


  /* Naslovi sekcij */
  .section-naslov {
    font-size: 2rem;
    margin: 3rem 1rem 1rem 1rem;
    color: #222;
    text-align: center;
    font-weight: 700;
  }


    .feature h3, .team-member h3, .portfolio-item h3 {
      margin-bottom: 0.5rem;
      color: #2575fc;
    }

    .contact-form {
      padding: 4rem 2rem;
      background: #e8efff;
      text-align: center;
    }

    .contact-form h2 {
      margin-bottom: 2rem;
    }

    form {
      max-width: 600px;
      margin: 0 auto;
      display: grid;
      gap: 1rem;
    }

    input, textarea {
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }

    form button {
      background: #2575fc;
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    form button:hover {
      background: #1a5adf;
    }

footer {
  position:relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
  z-index: 1000;
}


    .social-links {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease-out forwards;
    }

    .social-links a img {
      width: 32px;
      height: 32px;
      transition: transform 0.3s, filter 0.3s;
      filter: grayscale(100%) brightness(1.3);
    }

    .social-links a:hover img {
      transform: scale(1.2) rotate(5deg);
      filter: grayscale(0%) brightness(1);
    }
    .section-naslov {
      font-size: 2rem;
      color: #ffffff;
      text-align: center;
    }


    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(30px);
      }
    }
    .podpis {
      font-size: 0.9rem;
      color: #666;
      margin-top: 1rem;
    }
      #glavni-logo {
    height: 730px;
    position: relative;
    transition: height 0.1s, position 0.1s;
  }

  #glavni-logo.scrolled {
    position: absolute;
    top: 0;
    left: 0;
    height: 200px; 
  }
  @media screen and (max-width: 800px) {
  #iphoneimage{
    display: none
    
  }
}
  @media screen and (min-width: 800px) {
 #iphoneimage{
    position: absolute;
    top: 100px;
    right:20px;
    height: 800px;
    z-index: 10;
    
     
  }

  }
 

.animacija_slike{
   height:500px;
   width:auto;
    top: 350px;
     right: 10%;
      position: fixed;
       display: none;
      overflow: hidden;}
@media screen and (max-width: 1100px) and (min-width: 773px) {
  .animacija_slike{
    left: 30%;
  }
@media screen and (max-width: 772px) {
  .animacija_slike{
    
    max-width: 90% !important; 
    left: 0 !important;
  }
  
}
  
}
#portfelj {
  background: #111;
  height: auto;
  padding: 3rem 1rem;
}

#portfelj-naslov {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

.naslov {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.stats {
  background-image: radial-gradient(circle at 30% 110%,
    #ffdb8b 0%,
    #ee653d 25%,
    #d42e81 50%,
    #a237b6 75%,
    #3e57bc 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text; /* za Safari */
  font-weight: 1000;
  font-size: clamp(3rem, 10vw, 10rem); /* responsive velikost */
  text-align: center;
}

.portfelj-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.kontakt-button {
    background: #ff6f61;
    color: white;
    font-size: 1.5em;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-weight: 1000;
    margin-left: 44%;
    cursor: pointer;
}

/* For screens between 348px and 900px */
@media screen and (max-width: 901px) and (min-width: 348px) {
  .kontakt-button {
    width: 40%;
    font-size: 1em;
    margin-left: 30%;
  }
}

/* For screens between 901px and 1200px */
@media screen and (max-width: 1400px) and (min-width: 902px) {
  .kontakt-button {
    width: 30%;
    font-size: 1.2em;
    margin-left: 35%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 902px) {
  .kontakt-button {
    width: 30%;
    font-size: 1.2em;
    margin-left: 35%;
  }
}

  @media screen and (max-width: 347px) {
  .kontakt-button {
    font-size: 0.8em;
   margin-left: 30%;
  width: 40%;}
  }

.about-us {
  background: radial-gradient(circle at top left, #eef2ff, #ffffff);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* Več mehkih krogov z animacijo */
.about-us::before,
.about-us::after,
.about-us .circle1,
.about-us .circle2,
.about-us .circle3,
.about-us .circle4,
.about-us .circle5,
.about-us .circle6,
.about-us .circle7,
.about-us .circle8,
.about-us .circle9 {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  z-index: 0;
}

.about-us::before {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  animation: float 10s infinite alternate;
  background: rgba(99, 102, 241, 0.1);
}

.about-us::after {
  top: 150px;
  left: -120px;
  width: 200px;
  height: 200px;
  animation: float 12s infinite alternate-reverse;
  background: rgba(99, 102, 241, 0.08);
}

.about-us .circle1 {
  top: 50px;
  left: 60%;
  width: 150px;
  height: 150px;
  background: rgba(99, 102, 241, 0.07);
  animation: float 8s infinite alternate;
}

.about-us .circle2 {
  bottom: 60px;
  left: 20%;
  width: 180px;
  height: 180px;
  background: rgba(99, 102, 241, 0.05);
  animation: float 14s infinite alternate-reverse;
}

.about-us .circle3 {
  bottom: -80px;
  right: 30%;
  width: 220px;
  height: 220px;
  background: rgba(99, 102, 241, 0.06);
  animation: float 11s infinite alternate;
}

.about-us .circle4 {
  top: 200px;
  right: 10%;
  width: 130px;
  height: 130px;
  background: rgba(99, 102, 241, 0.04);
  animation: float 13s infinite alternate-reverse;
}

.about-us .circle5 {
  top: 100px;
  left: 40%;
  width: 90px;
  height: 90px;
  background: rgba(99, 102, 241, 0.06);
  animation: float 9s infinite alternate;
}

.about-us .circle6 {
  bottom: 150px;
  right: 60%;
  width: 110px;
  height: 110px;
  background: rgba(99, 102, 241, 0.05);
  animation: float 15s infinite alternate-reverse;
}

.about-us .circle7 {
  top: 250px;
  left: 15%;
  width: 70px;
  height: 70px;
  background: rgba(99, 102, 241, 0.03);
  animation: float 7s infinite alternate;
}

.about-us .circle8 {
  bottom: 100px;
  left: 50%;
  width: 120px;
  height: 120px;
  background: rgba(99, 102, 241, 0.07);
  animation: float 10s infinite alternate-reverse;
}

.about-us .circle9 {
  top: 180px;
  right: 40%;
  width: 100px;
  height: 100px;
  background: rgba(99, 102, 241, 0.04);
  animation: float 12s infinite alternate;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}


.about-container {
  max-width: 1200px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  color: #1e1e2f;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #6366f1;
  display: block;
  margin: 16px auto 0;
  border-radius: 4px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 50px;
  animation: fadeInCard 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.9);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-icon {
  font-size: 54px;
  color: #6366f1;
  margin-bottom: 30px;
  text-align: center;
}

.about-card p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInText 1s forwards;
}

.fade-in {
  animation-delay: 0.2s;
}

.fade-in.delay {
  animation-delay: 0.5s;
}

.fade-in.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 500px;
  object-fit: cover;
  animation: fadeInCard 1.2s ease forwards;
}

.cta-button {
  text-align: center;
  margin-top: 30px;
}

.btn {
  background-color: #6366f1;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
  @media screen and (max-width: 347px) {
  .btn {
	font-size: 0.65rem;
	left:10%;
	padding: 6px 13px;}
  }


.btn:hover {
  background-color: #4f46e5;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 100%;
    justify-content: center;
  }
  .about-image img {
    max-height: none;
  }
  .about-card{
    width: 95%;
    
  }
  .section-title {
    font-size: 32px;
  }
}
#modal{
    height: 100%;
    width: 100% ;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;

    background-color: #0000009a;
    position: fixed;
    left: 0;
    top: 0;
}
.kontaktdiv{
  z-index: 1000;
  position: relative;
  
  position: fixed;
  height: 500px;
  width: 500px;
  border-radius: 20px;
  background-color: #fff;

}
#cancel{
  font-size: 1.3rem;
  position: absolute;
  top: 10%;
  left: 80%;
  cursor: pointer;
}
#naslov-kontakt{
  font-size: 1.5rem;
  position: absolute;
  top: 10%;
  white-space: nowrap;
  margin-left: 10%;
}
#ikonce-div{
  position: relative;
  top: 20%;

 margin-top: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
      opacity: 0;

      transform: translateY(30px);
      animation: fadeInUp 1s ease-out forwards;
}
#ikonce-div a:not(:nth-child(4)) img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, filter 0.3s;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
  margin-left: 10%;
  cursor: pointer;
}
#ikonce-div a:nth-child(4) img {
    width: 32px;
  height: 32px;
  transition: transform 0.3s, filter 0.3s;
  
  margin-left: 10%;
  cursor: pointer;
}
#ikonce-div a img:hover{
      transform: scale(1.2) rotate(5deg);
    }
#ikonce-div a p{
  display: inline;
  margin-left: 25%;
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 550px){
  .kontaktdiv{
    width: 95%;
    height: 500px;

  }
  #naslov-kontakt{
    font-size: 1.2rem;
  }
  #cancel{
    font-size: 1.2rem;
  }
  /*#ikonce-div a p{
    margin-left: 10%;
  }*/
}
#ikonce-div a:last-child img {
  filter: invert(0);
}