<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  background-color: rgb(204, 240, 212);
  flex-direction: column-reverse;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}




body {
  background: rgba(26, 91, 199, 0.91);
  color: red;
  font-family: "Roboto", sans-serif;

  /* Set BASE FONT SIZE. If we don't set this, browser uses 16px. */
  font-size: 20px;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

li:hover,
li:focus {
  cursor: pointer;
}

h1 {
  color: green;
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

figure {
  margin: 25px auto;
  text-align: center;
  width: 100vw;
}

/* Responsive image is limited to the width of its parent. */
img {
  max-width: 100%;
}

section {
  font-size: 10px;
}

p {
  font-size: 0.75em;
}










nav {
  background: white;
  padding: 10px 0;
}

nav &gt; ul {
  display: flex;
  justify-content: space-around;
  margin: 0;
}

.dropdown ul {
  background: white;

  /* top-left, top-right, bottom-right, bottom-left */
  border-radius: 0 3px 3px 3px;

  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
  display: none;
  padding: 8px;

  /* Moves this out of the 'document flow' such that when it appears, it doesn't 'push' anything out of the way. */
  position: absolute;
}

/* Generally, 'focus' goes with 'hover' state to help with keyboard navigation and accessiblity. */
.dropdown:focus ul,
.dropdown:hover ul {
  display: flex;
  flex-direction: column;
}

/* Hero */
header,
header div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header {
  background: url(https://picsum.photos/960/550) no-repeat top center;
  background-size: cover;
  height: 80vh;
}

header div {
  background: rgba(255, 255, 255, 0.5);

  /* % checks the parent's width and scales accordingly. */
  width: 100%;
}




#myInput {
  background-image: url('/css/searchicon.png');
  background-position: 10px 12px;
  background-repeat: no-repeat;
  background-color: #f6f6f6;
  width: 100%;
  font-size: 20px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#myUL {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myUL li a {
  border: 1px solid #ddd;
  margin-top: -1px;
  background-color: #f6f6f6;
  padding: 1px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: flex;
  flex-direction: column;
  max-width: 50%
}

#myUL li a:hover:not(.header) {
  background-color: #eee;
}
/* .disappear {
  display: none;
} */






main {
  display: flex;
}

main &gt; section {
  background: rgba(255, 255, 255, 0.5);
  color: #333;
  margin: 10px;
  padding: 15px;
}

main section h2 {
  font-weight: bold;
  text-transform: uppercase;
}

.cta-btn {
  background: yellow;
  border-radius: 3px;
  display: inline-block;
  margin: 10px 0;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;

  /* Normally, you should specify which properites U want to transition. Else, it will do all the 'transition-able' things and that could slow the page down. */
  transition: 0.25s;
}

.cta-btn:focus,
.cta-btn:hover {
  background: greenyellow;
  transform: translateY(-3px);
}

/* Footer */
footer {
  border-top: solid 3px peru;
  margin-top: 10px;
  padding: 3px 10px 10px 10px;
}

footer li {
  display: inline-block;
}

/* Form */
form {
  border: solid 3px pink;
  margin: 15px auto;
  padding: 10px;
  width: 60vw;
}

form span {
  margin: 0 5px;
}

/* Attribute Selector */
input[type="checkbox"],
input[type="radio"] {
  transform: translateY(-3px);
}

input[type="checkbox"] {
  margin-right: 10px;
}

.input-group {
  margin: 15px 0;
}

.input-group--flex {
  display: flex;
  flex-direction: column;
  max-width: 50%;
}

.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}</pre></body></html>