/** Shopify CDN: Minification failed

Line 192:0 Expected percentage but found "@media"
Line 195:0 Expected "}" to go with "{"

**/
/** Shopify CDN: Minification failed

Line 204:0 Expected percentage but found "@media"
Line 207:0 Expected "}" to go with "{"

**/
body {
  text-align: center;
}

.logo-container {
  display: block;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: auto;
  margin-right: auto;
}

.logo {
  width: 70px;
  height: auto;
  margin-top: 10px;
  margin-right: 10px;
}

h1 {
  margin-bottom: 10px;
}

h5 {
  margin-bottom: 5px;
}

#fragranceContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

#fragranceContainer2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.fragrance {
  width: calc(50% - 20px);
  height: 90px;
  border: 1px solid black;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}


.notes {
  width: calc(50% - 20px);
  height: 90px;
  border: 1px solid black;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.fragrance.selected {
  background-color: #FFB6C1;
  color: black;
}


button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

button.reset {
  background-color: #f44336;
}

button.next-challenge {
  background-color: #2196F3;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover {
  background-color: #45a049;
}

#tooltip {
  position: absolute;
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  z-index: 9999;
}

/* Add this CSS to your existing styles.css or in a <style> tag in your HTML head */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Add this CSS to your existing styles.css or in a <style> tag in your HTML head */
#fireworks-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.firework-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center both horizontally and vertically */
}

/* Add this CSS to your existing styles.css or in a <style> tag in your HTML head */

.congratulations-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#blink_text{	
  animation-name:blink;
  width:280px;
  animation-duration:1s;
  animation-timing-function:ease-in;
  animation-iteration-count:Infinite;
  }

@keyframes blink{
  0%{color:black;}
  50%{color:red;}
  100%{color:purple;}


/* Responsive adjustments */
@media only screen and (max-width: 600px) {
  /* Your responsive adjustments */
}
