* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Press Start 2P', cursive;
}

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Arial, sans-serif; /* Standard-Schriftart */
  background-color: #2a2b2f;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background-image.jpg'); /* Hintergrundbild für die gesamte Website */
  background-size: cover;
  z-index: -1;
  display: none;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.hero-header {
  display: flex;
  height: 100vh;
  cursor: url('cursor-icon.png'), auto;
  /* 
  background-color: rgba(240, 238, 238, 0.835)
  background-color: rgba(0, 0, 0, 0.836); 
  */
}

.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #e7eaf5;
  /*
  color: #2a2b2f;
  */
  /*
  color: #e7eaf5; /* Textfarbe */
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.5rem;
}

.image-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  max-width: 400px;
  height: auto;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 767px) {
  .image-container {
      display: none;
  }
}

a {
  text-decoration: none;
  color: #1556a5;
}