@import url('css2');

.text-shadow {
  text-shadow: 0 2px 4px rgba(0,0,0,0.10);
}

.text-shadow-md {
  text-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.12);
}

.black-stroke {
  -webkit-text-stroke: 2px black;
  text-stroke: 2px black;
}

.white-stroke {
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
}

.yellow-stroke {
  -webkit-text-stroke: 2px rgb(251,191,36);
  text-stroke: 2px rgb(251,191,36);
}

body {
  background-image: url(bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Rajdhani', sans-serif;
}

.CPATH {
  /*position: relative;*/
  clip-path: polygon(30% 10%, 70% 10%, 100% 0, 100% 75%, 70% 100%, 30% 100%, 0 75%, 0 0);
  /*clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0% 100%, 10% 50%, 0% 0%);*/
}

.TEST {
  /*position: absolute;*/
  clip-path: polygon(30% 10%, 70% 10%, 100% 0, 100% 75%, 70% 100%, 30% 100%, 0 75%, 0 0);
}

input {
  text-align-last: center;
  text-align: center;
  font-weight: 700 !important;
}

.text-last-center {
  text-align-last: center;
}

input::placeholder {
  font-weight: 500 !important;
}

.LOGO, .S1, .S2, .S3, .S4, .S6 {
  display: none;
}

.PBPB {
  padding-bottom: 75%;
}

@media (min-width: 1024px) {
  
  .PBPB {
    padding-bottom: 25%;
  }
  
}
.XD {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
}

.hidden {
  display: none;
}

.offer {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    background-color: white; /* White background for each offer */
    color: black; /* Black text for each offer */
    padding: 0.5rem; /* Reduced padding for a smaller border */
    margin-bottom: 1rem; /* Space between offers */
    border-radius: 0.5rem; /* Optional: rounded corners */
    border: 1px solid #ccc; /* Optional: border */
}

.offer h3 {
    font-size: 0.875rem; /* Adjusted font size for the offer text (smaller) */
    margin: 0; /* Remove default margin for better fit */
}


#message-container {
    display: flex; /* Change to flex */
    flex-direction: column; /* Ensure the items are in a column */
    align-items: center; /* Center the offers horizontally */
    width: 100%; /* Ensure it takes the full width */
}


