* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #f5f6f7;
  font-size: 16px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 32px;
  background-color: #0a0a23;
  color: #fff;
  border-bottom: 4px solid #fdb347;
  z-index: 1000;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.breed-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 150px;
}
.breed-label {
  font-size: 1.5rem;
  color: #0a0a23;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 10px;
}

.breed-select {
  display: inline-block;
  width: 200px;
  font-size: 1.5rem;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  max-width: 1400px;
  margin: auto;
  gap: 16px;
}
.gallery img {
  width: 100%;
  width: 350px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
