/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Style */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  color: #000;
}

/* Header */
.logo-container {
  margin: 20px 0;
}

.logo {
  max-width: 100%;
  height: auto;
  width: 200px; /* Adjust based on logo size */
}

/* Main Content */
.content section {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #555;
  text-align: center;
}

/* Artwork Section */
.artwork-placeholder {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.box {
  width: 100px;
  height: 100px;
  border: 2px dashed #ccc;
  background-color: #f9f9f9;
}

/* Footer */
.footer {
  margin-top: 50px;
  padding: 20px;
  background-color: #f4f4f4;
  font-size: 0.9rem;
  color: #666;
}

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

  p {
    font-size: 0.9rem;
  }

  .artwork-placeholder {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 80px;
    height: 80px;
  }
}

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

  p {
    font-size: 0.8rem;
  }
}
