/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: linear-gradient(orange, white, hotpink);
  font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif;
  font-weight: 100;
  min-height: 100vh;
  color: black;
  max-width: 700px;
  margin: 0 auto;
}

.sonntagswort {
  background-image: url("gta_sunset.jpg");
}

.tierpark {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6d/Tierpark_Lange_Erlen.jpg?utm_source=commons.wikimedia.org&utm_campaign=imageinfo&utm_content=thumbnail_unscaled");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.tierpark h1 {
  color: white;
  background-color: darkgreen;
  text-align: center;
}

.tierpark-diary {
  background-color: rgba(255, 255, 255, 0.7);
  border: 5px;
}

.back-map {
  text-align: center;
}

.back-map a {
  color: white;
}

.tierpark-diary h2 {
  color: darkgreen;
  background-color: white;
  text-align: center;
}

h1 {
  font-family: luminari, sans-serif;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

.gallery-item:hover {
  border: 1px solid #777;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

.flexbox {
  display: flex;
  height: 500px;
}

.scrollbox {
  height: 400px;
  width: 50%;
  box-sizing: border-box;
  overflow:auto;
  background-color:green;
  color:antiquewhite;
  scrollbar-base-color: black;
  padding: 10px;
  border-radius: 25px;
}

.imagebox {
  width: 50%;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.yearhorse {
  background-color: darkred;
  color: gold;
  padding: 2px;
  border-radius: 40px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.header {
  background-color: antiquewhite;
  margin: 20px;
  padding: 2px;
  border: 0px;
  box-shadow: rgb(255, 130, 0) 0px 0px 0px 3px, rgb(255, 255, 255) 0px 0px 0px 6px, rgb(255, 255, 255) 0px 0px 0px 9px, rgb(0, 154, 68) 0px 0px 0px 12px;
  text-align: center;
}

.header img {
  width: 50px;
  height: 50px;
}

.header h1 {
  font-family: luminari;
  top: 18px;
  left: 10px;
}

.header a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  background-color: gold;
}

.container {
  position: relative;
  text-align: center;
  color: saddlebrown;
  font-family: Trattatello, fantasy, cursive;
  font-size: x-large;
}

.centered {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.moreinspiration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: center;
  background: antiquewhite;
  margin: 20px;
  padding: 5px;
  width: 200px;
  border-radius: 30px;
}

.homebutton {
  margin: 20px;
}