/* Apply box-sizing to all elements */
* {
  background-color: #F5DEB3;
  box-sizing: border-box;
}

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

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

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

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

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

.home-intro {
  text-align: center;  /* Center align the text */
  font-weight: bold;   /* Make the text bold */
  font-size: 24px;     /* Increase font size */
}

/* Style for the "Jonghyun's page" heading */
.home-heading {
  font-weight: bold;   /* Make the text bold */
  font-size: 32px;     /* Increase font size */
  text-align: center;  /* Center align the text */
}

