/* Reset some default styling if desired */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic body styling */
body {
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header and nav styling (optional) */
header {
  padding: 1rem;
}
nav a {
  text-decoration: none;
  color: #000;
  margin-right: 1rem;
}

/* Main container styling */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo container */
.logo-container {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 16rem;
}

/* Logo image */
.logo {
  max-width: 80%;
  height: auto;
}

.plakat {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

/* Tagline */
.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-family: "Courier New", Courier, monospace;
}

.upcoming-container {
  margin: 1rem;
  margin-top: 12rem;
}

.text-container {
  margin: 1rem;
  margin-top: 6rem;
  justify-content: left;
}

.headings {
  text-align: center;
  margin: 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
}

.text {
  text-align: left;
  margin: 1rem;
}

.text p {
  margin-bottom: 1rem;
}

.text ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Keep bullet points for submission requirements list and align with text */
ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

/* Remove bullet points from the first list (inside <b> tag) - more specific selector */
b ul {
  list-style-type: none !important;
  padding-left: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.text ul li {
  margin-bottom: 0.5rem;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 1rem;
}
