<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." */
  
@import url('https://fonts.googleapis.com/css2?family=Butterfly+Kids&amp;family=Delius+Swash+Caps&amp;family=Delius+Unicase:wght@400;700&amp;family=Gamja+Flower&amp;family=Glass+Antiqua&amp;family=Just+Me+Again+Down+Here&amp;family=Lacquer&amp;family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Quicksand:wght@300..700&amp;family=The+Girl+Next+Door&amp;display=swap');

body {
  background-color: #c99e93;
background-image: url("https://www.transparenttextures.com/patterns/notebook.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  color: black;
  font-family: mali;
}

.center {
  margin: auto;
  width: 50%;
}

.mainbox {
  background-color: dimgray;
}

/* Style the header */
.header {
  background-color: #f1f1f1;
  position:sticky;
  Height:150px;
  max-width:900px;
  font-size: 35px;
}

.navbar {
  li {
  display: inline;
  position: sticky;
  }
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

/* MEDIA QUERIES */

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media (min-width: 768px) {
    body {
    min-width:900px;
    justify-content:center;
    width:50%;
    margin: 0 auto;
    }

@media (min-width: 768px) {
    .mainbox {
    max-width:900px;
    margin: auto;
    width: 50%;
    min-width: 900px;
    margin-top:10%;
    }






</pre></body></html>