html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  background: #F0EBE3;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  width: 100%;
}

.image {
  display: inline-block;
  width: 80%;
  max-width: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.image img {
  width: 100%;
  display: block;
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #1560bd;
  margin: 20px 0;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.message {
  font-size: 16px;
  color: #333;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.message p {
    margin: 20px;
}

