/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header styles */
header {
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin: 0;
}

/* Main content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.image-container {
  max-width: 450px;
  width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

.message {
  text-align: center;
}

.message strong {
  font-weight: 500;
}

.description {
  text-align: center;
  padding: 0 1rem;
}

/* Footer styles */
footer {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

footer a {
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}

footer a svg {
  width: 48px;
  height: 48px;
}

/* Responsive design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .image-container {
    max-width: 350px;
  }

  footer {
    gap: 1.5rem;
  }

  footer a svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.75rem;
  }

  main {
    padding: 1rem;
    gap: 1.5rem;
  }

  .image-container {
    max-width: 280px;
  }

  footer {
    gap: 1rem;
  }

  footer a svg {
    width: 36px;
    height: 36px;
  }
}
