body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #434344;
  color: #333;
  text-align: center;
}

nav {
    text-align: left;
    padding: 20px 10px;
}

#home {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    color: #a0c4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#home:hover {
    color: #72a0ff;
    text-decoration: underline;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

main {
  padding: 40px;
}

section {
  background-color: rgb(255, 255, 255, 0.1);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section h2, section h3 {
  color: #ffffff;
}
section p {
  line-height: 1.6;
  color: #ffffff;
}
h3{
  font-size: larger;
}

.footer {
    width: 100%;
    height: 40px;
    margin-bottom: 0%;
    position:relative;
    text-align: center;
    background-color: #434344;
    color: #ffffff;
    font-size: 0.9em;
    text-decoration: none;
    }
.footer a {
    text-decoration: none;
    color: #ffffff;
}