/* Grunnoppsett */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #8ba78c;
  color: white;
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Main innhold */
main {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 50px; /* Luft over footer */
}

/* Seksjoner */
#artSection,
#inspiration,
#easterEggSection {
  background-color: #fff;
  padding: 20px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 60%;
  text-align: center;
}

#artArea {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  min-height: 200px;
}

.circle {
  border-radius: 50%;
}

/* Inspirasjon */
#inspirationText {
  margin-bottom: 10px;
  background-color: #ffefc3;
  padding: 10px;
  border-radius: 8px;
  font-style: italic;
}

#inspirationButton {
  background-color: #8ba78c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Easter egg */
.hidden {
  display: none;
}

#secretMessage {
  background-color: #ffefc3;
  color: #222;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  font-weight: bold;
  animation: fadeIn 1s ease-in-out;
}

/* Footer */
footer {
  background-color: #8ba78c;
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
  margin-top: 20px; /* luft mellom main og footer */
}

/* Animasjon */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
