/* Font and Cursor */
@font-face {
  font-family: pepperflakes;
  src: url('/style/pepperflakes.otf');
}

* {
  font-family: pepperflakes, "Verdana", sans-serif;
  cursor: url('/img/cursor.png') 15 15, auto;
}

/* Global Styles */
body {
  margin: 0;
  background-image: url('/img/homebg.png');
  background-color: #413831;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-size: 2rem;
  padding-top: 4%;
}

body a {
  text-decoration: none;
  color: #ffbcbc;
}

body a:hover {
  color: white;
}

body a:visited {
  color: #ff8080;
}

#homepage-center td {
  padding: 2.5rem;
}

#content {
  padding: 2rem;
  font-size: 1.65rem;
  line-height: 2rem;
  overflow: hidden;
}

#homepage-center {
  text-align: center;
}

/* Navbar Styles */
.navbar {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0E001E;
  padding: 0.5rem 1rem;
  font-size: 3rem;
  height: 8%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Navbar Logo */
.navbar a {
  font-weight: bold;
  text-decoration: none;
}

/* Navbar Links */
.navbar-links {
  display: flex;
  gap: 1rem;
}

.navbar-links a {
  color: white;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
}

.navbar-links a:hover {
  background-color: #DCC287;
  border-radius: 5px;
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .navbar-links {
      display: none;
      flex-direction: column;
      width: 100%;
  }

  .navbar-toggle {
      display: flex;
  }

  .navbar-links.active {
      display: flex;
  }
}

/* Footer Styles */
#footer {
  background-color: #DCC287;
  box-shadow: 0 0 5px #888888;
  padding: 0.5rem;
  font-size: 1.15rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

#footer table {
  margin: 0 auto;
  padding: 0;
  height: 80
}

#footer a {
  text-decoration: none;
  display: inline-block;
  padding: 16px;
}

#footer a:hover {
  background-color: #ddd;
  color: black;
}