body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

.column {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.left {
  background-color: #7b4b2a;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.center {
  background-color: #c8a27e;
  flex: 2.5;
  display: flex;
  flex-direction: column;
  background-image: url("main-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.right {
  background-color: #7b4b2a;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.time-button {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #e7dfc6;
  border: none;
  color: #3e2c1c;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.time-button:hover {
  background-color: #d4af7f;
}

.area-button {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #e7dfc6;
  border: none;
  color: #3e2c1c;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.area-button:hover {
  background-color: #d4af7f;
}

.webpage-title {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 65px;
}

.instruction-wrapper {
  border: 1px solid #7b4b2a;
  background: #f5efe6;
  color: #3e2c1c;
  width: 40rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 20px;
}

.submit-button {
  background: #f5efe6;
  height: 3rem;
  width: 10rem;
  margin-top: 2rem;
  font-weight: bold;
  color: #7b4b2a;
}
.submit-button:hover {
  background: #d4af7f;
}

.scroll-text-container {
  width: 100%;
  overflow: hidden;
  height: 4rem;
  position: relative;
}

.scroll-text {
  position: absolute;
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem;
  font-size: 2rem;
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.selected {
  background-color: #d4af7f;
  color: #3e2c1c;
  border: 2px solid #7b4b2a;
}
