@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Titan+One&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background-color: bisque;
  color: #2f2525;
}

header{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: burlywood;
  padding: 18px 0;
}

.nav-links{
  list-style: none;
}

.nav-links li{
  display: inline-block;
  padding: 0 20px;
}

.nav-links a{
  font-family: "Titan One", sans-serif;
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.nav-links a:hover{
  color: rgb(96, 71, 71);
}

h1{
  font-family: "Titan One", sans-serif;
  font-size: 52px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
}

.projects-intro{
  text-align: center;
  margin-bottom: 45px;
}

.projects-container{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card{
  background-color: #fff4e6;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(80, 50, 30, 0.15);
}

.project-number{
  font-family: "Titan One", sans-serif;
  font-size: 18px;
  color: rgb(96, 71, 71);
  margin-bottom: 20px;
}

.project-card h2{
  font-family: "Titan One", sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.project-card p{
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.project-button{
  display: inline-block;
  padding: 10px 16px;
  background-color: burlywood;
  color: black;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}