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

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

/* Horizontal navigation bar */
.navbar {
  margin-left: 20%;
  border-radius: 30px;
  overflow: hidden;
  justify-content: center;
  background-color: #343434;
  position: fixed;
  top: 0;
  width: 60%;
  z-index: 1;
  display: flex;
}

/* Links inside the navbar */
.navbar a {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
  font-weight: 700;
  color: white;
  padding: 16px 20px;
  text-decoration: none;  
  display: block;
}

.navbar a#active {
  background-color: #5a5647;
}

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

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

.flex-parent {
  display: flex;
}
.flex-child {
  align-items: center;
  flex: 1;
}