@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: 'Poppins', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30vw;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 18px;
}

.popup-content h2 {
  margin-top: 0;
}
#close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border-radius: 150%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border: 1px solid #999;
}
#close-popup:hover {
  cursor: pointer;
  background-color: #f1f1f1;
}
#close-popup svg {
  width: 15px;
  height: 15px;
}
.more-button {
  border: 2px solid #c52127;
  background-color: transparent;
  border-radius: 150px;
  padding: 15px 25px;
  font-size: 18px;
}
.more-button:hover {
  cursor: pointer;
  background-color: #c52127;
  color: white;
}
.logo-container {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .popup-content {
    width: 80vw;
    padding: 20px;
  }
}
