@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: "Titan One", sans-serif;
  font-size: 52px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
}

.art-intro{
  text-align: center;
  font-size: 17px;
  margin-bottom: 45px;
}

.gallery{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.art-card{
  background-color: #fff4e6;
  padding: 10px;
  border-radius: 20px;
}

.art-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}