/*
    Author: Imani Hollie
    Date: July 23, 2025
    File: Apply Your Knowledge
*/

/* CSS Reset */
body, header, nav, main, footer, h1, h2, h3, img {
  margin: 0%;
  padding: 0%;
  border: 0%;
}

/* Style rules for body and images */
body {
  background-color: #f0c981;
}

img {
  max-width: 100%;
  display: block;
}

/* Style rule for header content */
header {
  text-align: center;
  color: #0d0c0c;
}

header h1:first-of-type {
  font-family: 'Rubik-Burned', system-ui;
  font-weight: 400;
  font-size: 6.7em;
  font-style: normal;
  padding: 0.4em 0 0 0;
}
        
header h1:last-of-type {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 10em;
  font-style: normal;
}
        
header h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: .53em;
  font-size: 1.3em;
  font-style: normal;
  padding: 0 0 2em 0;
}

/* Style rule for navigation area */
nav {
  background-color: #0d0c0c;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav ul {
  list-style: none;
  margin: 0%;
  display: flex;
  justify-content: center;
  gap: 2em;
}

nav li {
  color: #f6f4f0;
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.02em;
  font-style: normal;
}

nav li a {
  color: #f6f4f0;
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.02em;
  font-style: normal;
}

/* Style rule for main content */
main {
  clear: left;
  background-color: #f6f4f0;
  padding: 3%;
  font-size: 1.25em;
}

main h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 2em;
  font-style: normal;
}

main p {
  color: #0d0c0c;
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1em;
  font-style: normal;
}

/* Style rule for footer content */
footer {
  background-color: #0d0c0c;
  text-align: center;
}

footer p {
  color: #f6f4f0;
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 0.75em;
  font-style: normal;
}

footer a {
  color: #f6f4f0;
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 0.75em;
  font-style: normal;
}