body {
min-height: 99vh;
background-image: url('https://cdn.pixabay.com/photo/2016/08/13/17/59/background-1591230_1280.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
margin: 0;
padding: 0;
}

#content {
  min-height: 100vh;
  background-image: url('https://cdn.pixabay.com/photo/2021/10/27/18/05/halloween-background-6748062_1280.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  color: white;
  padding: 2rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  width: 1400px;
  margin-bottom: 0;
}

h1 {
font-family: "Segoe UI", sans-serif;
color: black;
text-align: center;
}

.decisionImages {
  border-radius: 24px;
  width: 300px;
}
.row {
  display: table;
  width: 100%; 
  table-layout: fixed; 
  border-spacing: 10px; 
  text-align: center;
  margin-top: 35px;
}
.column {
  display: table-cell;
}

#userDecision {
  display: block;
  margin: auto;
}

#description {
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 18px
}

.decisionButtons {
  background-color:aqua;
  border: none;
  padding: 15px 32px;
  text-decoration: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 12px;
  transition-duration: 0.4s;
  width: 300px;
  margin-top: 25px;
}

#Verspätung {
  color:brown
}

#vergessen {
  color:darkgreen
}

#absagen {
  color:blueviolet
}

.decisionButtons:hover {
  background-color: rgb(31, 5, 132);
  color: aqua;
}

.divOutput {
  margin-top: 30px;
  background-color: lightgrey;
  text-align: center;
  border-radius: 24px;
  width: 750px;
  height:auto;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

#verspätungOutput {
  color:brown;
}

#vergessenOutput {
  color:darkgreen
}

#absagenOutput {
  color:blueviolet
}

#clearList {
 margin-top: 0;
 text-align: center;
 background-color:crimson;
}

#pageNav {
  display: flex;
  justify-content:space-between;
  align-items: center;
  width: 100%;
}

#divNextPage, #divLastPage {
  width: auto;
}