/* Apply box-sizing to all elements */
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  margin: 0;
  font-family: Times new Roman, Helvetica, sans-serif;
}

/* Horizontal navigation bar */
.navbar {
  overflow: hidden;
  background-color: #000201;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  display: flex;
}

/* Links inside the navbar */
.navbar a {
  color: red;
  padding: 16px 20px;
  text-decoration: none;
  display: block;
}

/* Hover effect */
.navbar a:hover {
  background-color: #ddd;
  color: red;
}

/* Main content */
.content {
  margin-top: 60px;  /* Space for the fixed navbar */
  padding: 20px;
}