* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #8C9DAD;
  color: white;
}

/* === DESKTOP === */
@media (min-width: 769px) {
  body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
  }

  .desktop {
    position: absolute;
    display: flex;
    flex-direction: column;
  }

  .mobile {
    display: none;
  }

  .top-left.desktop {
    top: 2rem;
    left: 2rem;
  }

  .top-right.desktop {
    top: 2rem;
    right: 2rem;
    text-align: right;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .top-right.desktop span {
    display: block;
  }

  .bottom-left.desktop {
    bottom: 2rem;
    left: 2rem;
  }

  .bottom-center.desktop {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .bottom-center.desktop div {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .bottom-center.desktop div span:first-child {
    min-width: 4rem;
    text-align: right;
  }

  .bottom-right.desktop {
    bottom: 2rem;
    right: 2rem;
    text-align: right;
  }
}

/* === MOBITEL === */
@media (max-width: 768px) {
  body {
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    font-size: 0.6em;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
  }

  .top-left.mobile {
    text-align: left;
    flex: 1;
  }

  .top-right.mobile {
    text-align: right;
    flex: 1;
  }

  .middle.mobile {
    text-align: right;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0;
  }

  .middle.mobile span {
    display: block;
  }

  .bottom-left.mobile {
    margin-top: auto;
    width: 100%;
  }
}

a {
  color: white;
  text-decoration: none;
}
.protected-email {
  font-style: bold; /* Opcionalno za vizualni naglasak */
}