@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", 'Segoe UI', Tahoma, Geneva, Verdana, 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: "Poppins", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 52px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
}

h2{
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

p{
  width: 90%;
  max-width: 750px;
  margin: 0 auto 18px auto;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}