body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #f9f9f9;
}

.border-container {
  display: flex;
  height: 100vh;
  border: 10px solid yellow;
  box-sizing: border-box;
  background-color: #222;
}

.container {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.image-area {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#beerImage {
  max-height: calc(100vh - 40px);
  display: block;
  border-radius: 10px;
}

input[type="file"],
input[type="text"] {
  padding: 10px;
  margin-top: 15px;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #ffd700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #111;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ffc400;
}

.riddle-box {
  margin-top: 20px;
}

.riddle-intro {
  font-size: 1.1rem;
  margin-top: 30px;
}

.tall-image {
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
