/* Reset and base styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: Arial, Helvetica, sans-serif;
  height: 100%;
}

/* Smooth scrolling for anchor targets */
html {
  scroll-behavior: smooth;
}

/* Fullscreen background image */
body {
  background: url("assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Semi-transparent dark overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Central content container */
.container {
  max-width: 700px;
  width: 100%;
  color: #fff;
  text-align: center;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Descriptions */
.description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contract address styling */
.contract-address {
  display: inline-block;
  font-family: monospace, monospace;
  word-break: break-word;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 10px;
}

/* Social link icons */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.social-links img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.social-links img:hover,
.social-links a:focus img {
  transform: scale(1.1);
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .social-links img {
    width: 40px;
    height: 40px;
  }
}
