body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Hero-section */
.hero {
  background-image: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1');
  background-size: cover;
  background-position: center;
  height: 90vh;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  color: white;
}

.hero p {
  color: #f0f0f0;
}

h1, h2 {
  color: #1a1a1a;
}

table {
  border-radius: 8px;
  overflow: hidden;
}

.btn-danger {
  background-color: #d62828;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-danger:hover {
  background-color: #a61e1e;
}

footer {
  font-size: 0.9rem;
}
.media-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.centered-image {
  display: flex;
  justify-content: center;
  margin: 40px 0; /* lite luft över och under */
}

.centered-image img {
  max-width: 100%;
  height: auto;
}

