body {
  background-color: hsl(0, 0%, 3%);
  color: hsl(0, 0%, 95%);
  padding: 0px;
  margin: 0px;
  font-family: Roboto;
}

.Title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

p {
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

/*Navigation-Bar*/
#Navigation-Bar {
  width: 100%;
  margin: 0px;
  background-color: hsl(0, 0%, 3%);
  display: flex;
  justify-content: center;
}

#Navigation-Bar img {
  width: 20%;
}

/*Hero-Section*/
#Hero-Section {
  background-image: url(Images/HeroBackground.png);
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#Hero-Section h1 {
  font-size: 3.5rem;
  margin: 0px;
}

#Hero-Section p {
  width: 50%;
  font-size: 1rem;
  text-align: center;
}

#Hero-Section a {
  color: hsl(0, 0%, 95%);
  border: 1px solid hsl(0, 0%, 95%);
  text-decoration: none;
  padding: 1% 3%;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.5s;
}

#Hero-Section a:hover {
  background-color: hsl(0, 0%, 95%);
  color: hsl(0, 0%, 3%);
  transition: all 1s;
}

/*About-Me*/

#About-Me {
  padding: 2%;
}

#Container-Main {
  display: flex;
  gap: 5%;
}

#Container-Main img {
  border-radius: 10px;
  width: 20%;
  display: block;
}

#Container-Main p {
  font-size: 1rem;
  margin-bottom: 50px;
  margin-top: 0px;
}

/*Project Section*/
#Project-Main {
  padding: 2%;
}

.Project-Container {
    display: flex;
    justify-content: space-between;
}

.Project-Box {
  background-color: hsl(0, 0%, 5%);
  box-shadow: 0px 0px 5px 1px hsl(0, 0%, 10%);
  padding: 2%;
  border-radius: 10px;
  width: 25%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}

.Project-Box img {
  width: 25%;
}

.Project-Box a {
  text-align: center;
  color: hsl(0, 0%, 95%);
  text-decoration: none;
  font-size: 1.2rem;
}

.Project-Box p {
  text-align: center;
}

.Project-Box:hover {
  background-color: hsl(0, 0%, 7%);
  box-shadow: 0px 0px 5px 1px hsl(0, 0%, 20%);
  transition: all 0.5s;
  transform: scale(1);
}
