<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */
body {
  background-color: #FFC000;
}

h1 {
  font-family: Ink Free;
  color: white;
  text-align: center;  
}

h2 {
  font-family: Ink Free;  
  font-size: 22px;  
}

p {
  font-family: Ink Free;
  font-size: 18px;
}

div{
  padding: 0px 0px 0px 10px;
}

{
  box-sizing: border-box;
}

body {
  font-family: Ink Free;
}

/* Style the header */
header {
  background-color: #666;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: white;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 25%;
  height: 400px; /* only for demonstration, should be removed 600px*/
  background: #FFC000;
  padding: 20px;
}

/* Style the list inside the menu */
nav ul {
  font-family: Ink Free;
  font-size: 18px;
  list-style-type: none;
  padding: 20px;
}

li{
  margin: 20px;
}

article {
  float: righ;
  padding: 15px;
  width: 70%;
  background-color: #FFC000;
  &lt;!--height: 300px; /* only for demonstration, should be removed */ --&gt;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

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

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }/* CSS Document */</pre></body></html>