body {
    background-color: #ffe4e1; /* Light pink */
    margin: 0;
    padding-top: 40px;  /* top space */
    padding-bottom: 40px; /* bottom space */
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

header img {
    background-color: #ffe4e1;
    max-width: 375px;
    max-height: 500px;
    height: auto;
    width: auto;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.content-wrapper {
    background-color: #ffe4e1; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px); /* leave room for top/bottom */
    margin-top: 100px;
    margin-bottom: 100px;
}

.textbox {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    color: #333333; /* Dark grey */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.line-box {
  display: inline-block;
  border: 2px solid 	#AA336A; /* Line box */
  padding: 10px 20px;
  border-radius: 5px;
  background-color: white;
  color: #333;
  font-size: 24px; /* Increased font size */
}