* {
  box-sizing: border-box;
}
body,html{
  margin: 0;
  padding: 0;
}
#welcome-section {
  height: 100vh;
  background-color: #2b2d30;
  color: white;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
}

#welcome-section h1 {
  font-size: 4rem;
  margin: 0; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#welcome-section p {
  color: #e03b4b; 
  font-size: 2rem;
  font-weight: 300;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 10px;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgb(236, 104, 104); 
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#navbar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  padding: 10px;
  font-size: 20px;
  font-family: sans-serif;
  display: flex;
  align-items: center;
}

#navbar a:hover {
  background-color: rgb(129, 129, 247);
  height: 100%;
}

#project-section {
  background-color: blue;
}
@media (max-width: 600px) {
  #navbar {
    text-align: center;
  }
}
