body {
  font-family: Georgia;
  margin: 0; 
  padding: 0; 
  background-color: rgb(255, 218, 162); 
}

p {
  padding: 5%;
  font-size: 40px;
}

div {
  align-items: center;
}

span {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  padding: 10px 20px;
  background-color: #2e90fa;
  color: #fff;
  border: none;
  border-radius: 25px; 
  cursor: pointer;
}

button:hover {
  background-color: #6c9ccf; 
}

img {
  width: 50%;
}

.banner {
  font-family: Tahoma;
  background-color: rgb(235, 213, 179); 
  color: #333; 
  padding: 20px; 
  text-align: center; 
  font-weight: bold; 
}

.text {
  text-align: center;
}

.textImageBox {
  display: flex;
  margin: 0px auto;
  width: 80%;
  border: 2px solid rgb(255, 140, 140); 
  border-radius: 20px;
}

.text-column {
  flex: 1;
}

.image-column {
  flex: 1;
  width: 50%; 
  height: auto; 
}



