body {
  font-family: 'Roboto', sans-serif;
  background: repeating-linear-gradient(
    45deg,
    #ffeb3b,
    #ffeb3b 20px,
    #333 20px,
    #333 40px
  );
  color: #222;
  margin: 0;
  padding: 0;
}

header {
  background: #222;
  height: 40px;
}

footer {
  background: #222;
  color: #ffeb3b;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  margin-top: 2em;
}

main {
  text-align: center;
  margin-top: 1em;
}

.main-btn {
  padding: 1em 2em;
  font-size: 1.2em;
  background: #ffeb3b;
  color: #222;
  border: 3px solid #222;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #222;
  transition: transform 0.1s;
}
.main-btn:hover { background: #ffe955; }
.main-btn:active { transform: translateY(2px); }

.card {
  margin: 1.5em auto;
  max-width: 1000px;
  background: #fff;
  padding: 1em;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #222;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1em;
}

.col {
  flex: 1 1 300px; /* växer men aldrig mindre än 300px */
  text-align: center;
  margin: 0.5em;
}

#umarell-image,
#byggare-image {
  width: 90%;
  max-width: 380px; /* större på desktop */
  border-radius: 10px;
  margin: 0.5em auto;
  background: #eee;
  display: block;
}

h3 {
  margin-bottom: 0.3em;
}

.quotes blockquote {
  font-style: italic;
  font-size: 1.15em;
  line-height: 1.5em;
  margin: 0.5em auto;
  max-width: 90%;
  color: #444;
}

.button-row {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.button-row button {
  padding: 1em 1.5em;
  font-size: 1.1em;
  border-radius: 6px;
  border: 2px solid #222;
  background: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 0 #222;
  transition: background 0.2s;
}
.button-row button:hover {
  background: #f0f0f0;
}

/* Extra mobilanpassning för smala skärmar (iPhone) */
@media (max-width: 600px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  #umarell-image,
  #byggare-image {
    max-width: 95%;
  }

  .button-row {
    flex-direction: column;
    gap: 0.7em;
  }

  .button-row button {
    width: 80%;
  }
}
