/*
    Author: Imani Hollie
    Date: July 09, 2025
    File: Final Project
*/

/* CSS Reset */
body img header nav main footer {
  margin: 0%;
  padding: 0%;
  border-width: 0;
}

/* Style rules for body and images */
body {
  background-color: #f0c981;
  font-family: 'DM Sans', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.rubik-burned {
  font-family: "Rubik Burned", system-ui;
  font-weight: 400;
  font-style: normal;
}

.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Style rule for header content */
header {
  text-align: center;
  padding-top: 6em;
}

header a {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2em;
}

h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2em;
}

h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2em;
}

/* Style rule for navigation area */
nav {
  background-color: #0d0c0c;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#logo {
  max-width: 40px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav li a {
  color: #f6f4f0;
  text-decoration: none;
  font-size: 1.02em;
}

/* Style rule for main content */
main {
  background-color: #f6f4f0;
  padding: 3%;
  font-size: 1.25em;
}

main h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2em;
}

main p {
  color: #0d0c0c;
  font-size: 1em;
}

/* Style rule for footer content */
footer {
  background-color: #0d0c0c;
  text-align: center;
  padding: 1em 0;
}

footer p {
  color: #f6f4f0;
  font-size: 0.75em;
  font-style: normal;
}

footer a {
  color: #f6f4f0;
  font-size: 0.75em;
  font-style: normal;
}