/*
Theme Name: Zacks_Theme_1
Author: Zack Jones
Description: My custom WordPress theme.
*/

body {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  background: lightcoral;
  color: white;
}

header {
  padding: 30px;
  background: lightgreen;
  text-align: center;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Menu area */
nav {
  margin-top: 20px;
}

/* Remove bullet points and make menu horizontal */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Menu links */
.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  display: block;
}

/* Hover effect */
.menu li a:hover {
  background: #444;
  border-radius: 5px;
}

.site-footer {
  background: #ef9af5;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.site-footer p {
  margin: 0;
}