body {
    margin: 0;
    font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	
}

.top-bar {
    background-color: rgb(255, 204, 0);
    color: black;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px 5px 0px 0px;
}

.content {
    /* flex: 1; */
    background-color: white;
    /* overflow: hidden; */
    position: relative;
    line-height: 1;

    overflow-y: scroll; /* Enable vertical scrolling */
    overflow-x: hidden; /* Hide horizontal scroll (optional) */
    border: 2px solid rgb(255, 204, 0); /* Add a border (optional) */
	border-radius: 0px 0px 5px 5px;
	padding: 5px;
    	
	
}

.scrolling-text {
    position: absolute;
    bottom: 0;
    right: 0;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    color: rgb(255, 204, 0);
    font-size: 2em;
    font-weight: bold;
    animation: scroll-up 25s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-300%);
    }
}

.bottom-bar {
    background-color: rgb(255, 204, 0);
    color: black;
    text-align: center;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px 5px 5px 5px;
}

.bottom-bar a {
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    margin-right: 20px;
	display: flex;
}

.logo {
    height: 80%;
}


.button_parent {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.button {
            display: inline-block;
            padding: 5px 5px;
            font-size: 16px;
            color: white;
			border-radius: 5px;
            /* background-color: #007bff;   */
			max-width: 100%;
        }
.button1{
	background-color: #28a745;
	box-sizing: border-box;
    width: 30%; /* Set width to 50% for the first two divs */
    text-align: center; /* Center the text horizontally */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
	margin: 2% 5% 2% 5% ;
}

.button2 {
    width: 30%;
}
.button3 {
    width: 100%;
	
}

.button a {
    display: block; /* Makes the anchor tag fill the div */
    text-decoration: none; /* Removes the underline from the links */
    color: inherit; /* Inherits the color of the parent div */
    width: 100%; /* Ensures the anchor takes up the full width of the parent div */
    height: 100%; /* Ensures the anchor takes up the full height of the parent div */
}


.image-container {
  position: absolute;
  width: 300px;
  left: 180px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 11;
  
      
	top: 50px;

	margin: 0px auto; 
    height: 80%;
    display: block;
	cursor: pointer;
  
}


#game-container {
  bottom: 0px;
  position: relative; /* Set position relative for positioning the jar and garden */
  display: flex;
  justify-content: space-around;
  align-items: flex-start; /* Align items to the top */
  height: 100vh;
  z-index: 0;
}


.image-container img {
  position: absolute;
  width: 300px;
  height: auto;
  border: 2px solid #333;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

#orderButtonImage {
  position: absolute;
  width: 300px;
  height: auto;
  bottom : 20px;
  background: #fff;
  border-radius: 10px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

#overlay_content {
  position: relative;
  width: 80%;
  height: 50%;
  padding: 40px 10px 10px 10px;
  
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

#iframeViewer {
  width: 100%;
  height: 100%;
  border: none;
}

#closeBtn {
  position: absolute;
  top: 3px;
  left: 3px;
  background: crimson;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.dot-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  cursor: pointer;
}

.dot polygon {
  fill: transparent;
  stroke: #FFC90E;
  stroke-width: 5;
  transition: all 0.3s ease;
}

.dot.active polygon {
  fill: #FFC90E;
}



/* Responsive adjustment for small screens */
@media (max-width: 660px) {
.image-container {
    position: relative;
	top: 50px;
	left: 0px;
	margin: 0px auto; 
    height: 80%;
    display: block;
	cursor: pointer;
  }
  
#game-container {
  display: none;
}
#overlay_content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: none;
  dispaly: block;
  border-radius: 10px;
}

}