body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  padding-top: 60px;
  background: wheat
}

#navbar {
  background-color: steelblue;
  padding: 15px 0;
  color: white;
  position: fixed;
  width: 100%;
  height: 30px;
  top: 0;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.main {
  height: 100vh;
}

#navbar a {
  color: white;
  text-decoration: none;
  margin: auto 30px;
  transition: color 0.3s;
}

#navbar a:hover {
  color: #ffcc00;
}

section {
  height: 595px;
  padding: 20px;
  margin-bottom: 0;
  scroll-margin-top: 60px;
  padding-bottom: 0px;
}
section:last-child {
  margin-bottom: 0;
}

.home-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.home-content h2 {
  color: steelblue;
  font-size: 3.5em;
  margin-bottom: 0.7em;
}

.home-content p {
  font-size: 2em;
  line-height: 1.6;
}


.application-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding: 20px;
}

.application-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: steelblue;
}

.applications-list {
  list-style: none;
  padding: 0;
}

.applications-list li {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}

.applications-list li:before {
  content: '•';
  color: steelblue;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -0.1em;
}


.about-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding: 20px;
}

.about-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: steelblue;
}

.css-attributes-list {
  list-style: none;
  padding: 0;
}


.css-attributes-list li {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}


.css-attributes-list li:before{
  content: '•';
  color: steelblue;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -0.1em;
}


.project-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding: 20px;
}

.project-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: steelblue;
}

.project-content p {
  font-size: 1.2em;
  line-height: 1.6;
}
