
/* RESET */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* BACKGROUND */
body {
  background-image: url("website background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  color: white;
}

/* NAVBAR */
.navbar {
  background: red;
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  align-items: center;
}

.logo {
  color: white;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

/* TITLE */
.title {
  background: red;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}