body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bilder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#randomImage {
  max-width: 97%;
  max-height: 80%;
  object-fit: contain; /* Anpassar bilden inom rutan utan att förvränga den */
}

.nybild {
  display: flex;
  justify-content: center;
  align-items: center;
}

#newImageButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}
p {
  font-family: 'Courier New', Courier, monospace;
  font-size: small;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 10px;
  width: 97%; /* Ta upp hela bredden av fönstret */
}
a {
  color: black;
  text-decoration: none;
}
em {
  font-style: normal;
  color: red;
}