/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  display: flex;
  flex-direction: row;
  background-color: #B8BACF;
  color: black;
  font-family: Verdana;
  gap: 20px;
}

div {
  background-color: #D2D5DD;
  border-radius: 30px;
  border: 4px solid #B8BACF;
  outline: 4px solid #8A8CA3; 
  outline-offset: 1px;  
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 25px;
}

div h1,
div h2,
div h3{
  color: #DD614A;
}

div p {
  color: #474A48;}
  

.left, .middle, .right {
  height: 100vh; /* optional, just for demonstration */
}

.left {
  flex: 1; 
}

.middle {
  flex: 3; 
  position: relative;
  padding-left: 55px;
}

.right {
  flex: 1; 
}

.middle .flower{
  position: absolute;
  top: 0;
  right: 0;     /* <-- top-right corner */
  margin: 10px; /* optional spacing from edges */
  height: 300px;  /* optional image size */
}