body {
  margin: 0;
  font-family: sans-serif;
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: violet;
  padding: 10px;
  display: flex;
  justify-content: space-around;
}

#navbar a {
  color: white;
  text-decoration: none;
}

#welcome-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightblue;
}

#welcome-section h1 {
  margin: 0;
}

#project-section {
  padding: 100px 20px;
  background-color: lightyellow;
}

.project-tile {
  display: inline-block;
  margin: 10px;
  padding: 20px;
  background-color: violet;
  color: white;
  text-decoration: none;
}

@media (max-width: 600px) {
  #navbar {
    flex-direction: column;
    align-items: center;
  }
}