
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}




body {
  font-family: Arial, sans-serif;
  line-height: 1;
  color: #000;
}

header {
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
}

header img {
width: 150px;
height: auto;

}

header h1 {
  flex: 1;
  text-align: center;
  font-size: 64px;
}

nav {
  background-color: #000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 15px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

#spielfeld {
  color: #FFA500;
}

.content {
  padding: 60px 50px;
}

.content-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.content-block img {
  width: 48%;
  max-width: 700px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.text-block {
  width: 48%;
  min-width: 260px;
}

.text-block h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.text-block p {
  font-size: 14px;
 
}

footer {
  background-color: #000;
  color: #fff;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 30px 50px;
  text-align: center;
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1;
}

@media (max-width: 800px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 20px;
  }

  .content-block {
    flex-direction: column;
    align-items: center;
  }

  .content-block img,
  .text-block {
    width: 90%;
  }
}



img:hover, h1:hover, h2:hover, a:hover, li:hover, span:hover {
  color: #FFA500;
  filter: drop-shadow(0 0 6px orange) drop-shadow(0 0 15px red);
  transform: scale(1.05);
  transition: all 0.3s ease;
  cursor: pointer;
}


p:hover {
  color: #FFA500;
  transition: color 0.3s ease;
  cursor: pointer;
}


.text-block h2 + input,
.text-block input,
.text-block button,
#result-list {
  display: block;
  margin-top: 20px;
}
