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

body {
  background-image: url('images/badtz_bg-stars.gif');
  color: red;
  background-color: #000000;
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Remove any gap from the header */
.blood-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #000;
  height: 150px;
  padding: 0;
  margin: 0;
  width: 100%;
}

.center-container {
  display: flex;
  flex-direction: row; /* Change from column */
  flex-wrap: wrap; /* Allow wrapping */
  justify-content: center; /* Center horizontally */
  gap: 10px; /* Adjust spacing */
}

.blooddrip {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.blood-header {
  display: flex;
  align-items: flex-start; /* Changed from flex-end */
  justify-content: space-between;
  background: #000;
  height: 150px;
  padding: 0;
  margin: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
