@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Arial, sans-serif;
  user-select: none;
}

#title-section {
  padding: 2vh 0;
}

.title-text {
  margin: 20px;
  font-family: "Lobster", sans-serif;
}

#button-section {
  padding: 2vh 10vw;
}

#send-button {
  width: 40vw;
  height: 40vw;
  max-width: 40vh;
  max-height: 40vh;
  background-color: #f39c12;
  border: none;
  border-radius: 20vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-image: url("icon_1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 66%;
}

#send-button:hover {
  background-color: #e67e22;
}

#celebration-message {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
  line-height: 1.5;
  margin: 15px auto;
  max-width: 90%;
  word-wrap: break-word;
}

#gameSpace {
  font-family: "DotGothic16", sans-serif;
  font-size: 1em;
  color: #000;
  margin: 15px auto;
  max-width: 90%;
  word-wrap: break-word;
}

#celebration-message p {
  margin: 0;
}

.highlight {
  color: #e67e22;
  padding: 0 0.2em;
  font-family: "New Tegomin", serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.4em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.3);
}

.modal-content {
  background-color: #fefefe;
  margin: 15vh auto;
  padding: 20px;
  border-radius: 7px;
  width: 60vw;
  max-width: 40vh;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#ad-section {
  width: 100%;
  background-color: #f4f4f4;
  padding: 5px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #ccc;
}

.ad-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 14px;
  color: #333;
}

#dummy-foot {
  height: 70px;
  background-color: transparent;
}