
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: #000;
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.logo {
  width: 120px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.wallet {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: orange;
  border: 2px solid orange;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.hero h1 {
  font-size: 48px;
  margin-top: 140px;
  font-weight: bold;
}

.hero h2 {
  font-size: 24px;
  color: orange;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}

.section {
  padding: 60px 20px;
  background-color: black;
}

.section h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.section .text {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.section .text img {
  width: 100px;
  margin: 20px 0;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  margin: 10px 0;
  font-size: 16px;
}

.masks-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.masks-row img {
  width: 150px;
  border-radius: 8px;
}
