body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: "Montserrat", sans-serif;
}

#contact-section {
  height: 100vh;
  color: beige;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*
navbar styles
*/
#navbar {
  position: sticky;
  top: 0;
}
#navbar ul {
  min-height: 60px;
  background: linear-gradient(180deg, red, chocolate, red);
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 20px;
  box-shadow: 0 1px 1px orangered;
}

#navbar ul a {
  font-size: 1.125rem;
  color: beige;
  text-decoration: none;
  padding: 20px;
}

#navbar ul a:hover {
  font-size: 1.3rem;
  color: white;
  text-decoration: underline;
  padding: 20px;
}

/*
welcome section
*/
#welcome-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 60px; /* equal to navbar height */
}
/*
  Welcome Heading
*/
#welcome-section h1 {
  margin: 0;
  padding: 0;
  font-size: 2.5rem;
  color: beige;
  box-shadow: 0 2px 0 orangered;
}

#welcome-section p {
  margin: 0;
  padding: 0;
  color: beige;
  font-size: 1.125rem;
}

/* Project Section */

#project-section {
  margin: 0;
  padding: 40px;
  height: auto;
}

#p-title {
  color: #f39c12;
  font-size: 1.4rem;
  text-align: center;
}

#projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  justify-items: center;
}

.photo > img {
  display: block;
  max-width: 90%;
  margin: auto;
  border-radius: 40px;
}

.project-tile {
  max-width: 350px;
  padding: 16px;
  background-color: #222; /* optional for contrast */
  border-radius: 20px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.project-tile h2 {
  margin: 0;
  padding: 0;
  color: beige;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 40px;
}
.project-tile p {
  margin: 0;
  padding: 0;
  color: beige;
  font-size: 1rem;
  text-align: center;
  order: -1;
}
.project-tile a {
  color: #f39c12;
  text-decoration: none;
  font-size: 1.125rem;
}
.project-tile a:hover {
  color: #e67e22;
  text-decoration: underline;
  font-size: 1.2rem;
}

#contact-parent {
  display: flex;
  gap: 30px;
}
#contact-parent > li {
  list-style-type: none;
}

#contact-parent a {
  color: #f39c12;
  text-decoration: none;
  font-size: 1.125rem;
}
#contact-parent a:hover {
  color: #e67e22;
  text-decoration: underline;
  font-size: 1.2rem;
}

#contact-section > p {
  font-size: 2rem;
  box-shadow: 0 2px 0 orangered;
}

@media (max-width: 500px) {
  #projects {
    grid-template-columns: 1fr;
  }
  #welcome-section,
  #project-section,
  #contact-section {
    min-height: 250px;
  }
  #navbar ul {
    flex-direction: column;
    height: auto;
  }
  #contact-parent {
    display: grid;
  }
}
