@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Poppins:wght@400;700&display=swap");
:root {
  --background: #fdf4e3;
  --color-primary: #1e90ff;
  --text-primary: #004d33;
  --text-secondary: #1c3d5a;
  --accent-bright-orange: #ff6600;
  --accent-sunshine-yellow: #ffcc00;
  --accent-vivid-green: #39d353;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background);
  color: var(--color-text-dark);
}
header {
  background-color: var(--color-primary);
  color: var(--background);
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}
.logo {
  padding: 10px;
  background-color: var(--background);
  border-radius: 10px;
}
.logo img {
  width: 100px;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.nav ul li a {
  color: var(--background);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.nav ul li a:hover,
.nav ul li a.active,
.nav ul li a:hover {
  background-color: var(--accent-bright-orange);
}
main {
  padding: 1rem;
  margin-top: calc(100px + 1rem);
  min-height: calc(100vh - 100px);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
footer {
  background-color: var(--color-primary);
  color: var(--background);
  padding: 1rem;
}
.footer-logo {
  width: fit-content;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.footer-nav ul li a {
  color: var(--background);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.footer-nav ul li a:hover,
.footer-nav ul li a:active,
.footer-nav ul li a.active {
  background-color: var(--accent-bright-orange);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 1rem;
}
.made-by {
  font-size: 0.8rem;
  text-align: right;
  padding: 1rem 0;
}