@font-face {
  font-family: 'Acma Black'; /* set name */
  src: url('./fonts/PPAcma-Black.otf');
  src: url('./fonts/PPAcma-Black.otf?#iefix') format('embedded-opentype'),
      url('./fonts/PPAcma-Black.woff2') format('woff2'),
      url('./fonts/PPAcma-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins Regular'; /* set name */
  src: url('./fonts/Poppins-Regular.ttf') format('truetype');
}


body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: rgba(5, 62,55, 1);
  cursor:url(./images/Poticka-cursor.png), auto;
}

.container {
  text-align: center;
  padding: 40px;
  max-width: 500px;
}

h1 {
  font-family: 'Acma Black', sans-serif;
  color: #fff;
  margin-bottom: 60px;
  font-size: 55px;
}

.button-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  min-height: 60px;
  align-items: center;
}

button {
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  font-weight: bold;
}

#yesBtn {
  background-color: rgba(230, 29, 35, 1);
  color: white;
  margin-right: 150px;
}

#yesBtn:hover {
  background-color: rgba(230, 29, 35, 1);
  transform: scale(1.05);
  cursor:url(./images/Poticka-cursor.png), auto;
}

#noBtn {
  background-color: rgba(230, 29, 35, 1);
  color: white;
  position: fixed;
  transition: all 0.3s ease;
}

#noBtn:hover {
  background-color: rgba(230, 29, 35, 1);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(186, 30, 38, 1);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: rgba(186, 30, 38, 1);
  padding: 80px 40px;
  width: 100%;
  height: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  animation: slideIn 0.3s ease;
}

.potica-image {
  width: 100%;
}

.valovi {
  width: 140px;
}

.logo {
  width: 100px;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-content h1 {
  margin-bottom: 0;
  margin-top: 0;
}

.popup-content p {
  font-family: 'Poppins Regular', sans-serif;
  line-height: 1.6;
  color: white;
  margin: 20px 0;
  white-space: pre-line;
  font-size: 20px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .button-container {
    flex-direction: column;
    gap: 20px;
  }

  .popup-content p {
    font-size: 18px;
  }
}