/* Base styles */
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(9, 92, 170);
  font-family: "Single Day", cursive;
}

/* Centered container */
.main-container {
  width: 90%;
  max-width: 40rem;
  padding: 2rem;
  border: 0.5rem outset black;
  background-color: rgb(220, 220, 220);
  text-align: center;
  box-sizing: border-box;
}

/* Messages */
.message {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.return-text {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-top: 1.5rem;
}

/* Image */
.main-container img {
  max-width: 60%;
  height: auto;
  border: 0.1rem solid black;
}
