<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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{
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.image-section {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.image1 {
  background-image: url('yvonnepagebackground.png');
}

.image2 {
  background-image: url('');
}

.image3 {
  background-image: url('');
}

.container {
  display: flex;   /* Creates a flex container */
  gap: 5px;       /* Adds space between the flex items */
}

.shelf {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  gap: 5px;               /* Space between each item */
}

.textbox-wrapper {
  position: relative;
  width: 800px;
  height: 500px;
  margin: 40px;
  border-style: solid;
  border-width: 26px 5px 5px 5px; /* top, right, bottom, left */
  border-image: url("border-frame.png") 26 5 5 5 stretch;
  overflow: visible; /* Important: let the corner image show */
}

.textbox-wrapper::after {
  content: "";
  position: absolute;
  top: -23px;
  right: -1px;
  width: 59px;
  height: 19px;
  background-image: url('frame-buttons.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

.corner-label {
  position: absolute;
  top: -23px;
  left: -5px;
  font-family: 'Arial';
  font-weight: bold;
  font-size: 13px;
  color: white;
  padding: 2px 8px;
  z-index: 2;
}

.textbox {
  width: 100%;
  height: 100%;
  overflow: auto;     /* This makes the inner content scroll */
  background-color: white;
  padding: 20px;
  box-sizing: border-box;
}

.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 90px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.mainbody {
  margin-left: 90px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}</pre></body></html>