* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body, html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: url("texture.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background: url("black-texture.jpg") center center / cover no-repeat;
}

.container {
  height: 100vh;
  background-color: #111;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  color: #e7b701;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.highlight {
  display: inline-block;
  padding-left: 10px;
  font-weight: bold;
}

main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  color: #fbd300;
  margin-bottom: 30px;
  font-weight: 800;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
}

.info h2{
	font-size: 20px;
}

.info p{
	font-weight: 500;
	font-size: 14px;
}

.circle-image-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.circle-bg {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.circle-image-wrap img {
  position: absolute;
  z-index: 2;
}

.item img {
  width: 100%;
  height: auto;
}

.info {
  padding: 15px;
}

.price {
  background-color: #fbd300;
  color: #111;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 1.2rem;
}

.heart {
  animation: pulse 1.2s infinite;
  display: inline-block;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

footer {
  text-align: center;
  padding: 20px;
  color: #fbd300;
}

footer p{
	color: #e7b701;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 500px) {
	footer p{
		font-size: 2rem;
	}
}