body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: url("abstract-1780386_1920\ -\ kopie\ -\ kopie.png") no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  transition: background-color 0.3s ease;
  flex-direction: column;   
}

header {
  text-align: center;
  margin-bottom: 1.5rem;
}


body.active {
  background: red !important;
  color: #fff;
}

#content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  max-width: 600px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}


h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #9ad29a; 
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

header a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

header a:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: #4a90e2;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

button:hover {
  background: #357abf;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
