main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.moin-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgb(2,28,30);
  width: 100%;
}

.moin {
  font-size: 20px;
  color: rgb(250, 132, 43);
  width: 90%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.support {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 85.5%;
  height: fit-content;
  background-color: rgb(95, 6, 0);
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 50;

  padding-right: 60px;
}

.support .information {
  position: relative;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 40px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  z-index: 75;
}

.support .information .title {
  font-size: 25px;
  font-weight: 530;
  color: white;
}

.support .text-box {
  position: relative;
  left: 30px;
  right: 30px;
  top: 30px;

  margin-bottom: 50px;
  font-size: 22px;
  color: white;
  overflow: hidden;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.support .mehr {
  position: relative;
  bottom: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.support a {
  color: white;
  padding: 5px;
  border: none;
  border-radius: 10px;
  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}

.support a:hover {
  background-color: white;
  color: black;
  padding: 5px 10px;
}

.support a:active {
  opacity: 0.6;
}

.current {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 85.5%;
  height: fit-content;
  background-color: rgb(144,70,112);
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 50;

  padding-right: 60px;
}

.current .information {
  position: relative;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 40px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  z-index: 75;
}

.current .information .title {
  font-size: 25px;
  font-weight: 530;
  color: white;
}

.current .text-box {
  position: relative;
  left: 30px;
  right: 30px;
  top: 30px;

  margin-bottom: 50px;
  font-size: 22px;
  color: white;
  overflow: hidden;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.current .mehr {
  position: relative;
  bottom: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.current a {
  color: black;
  padding: 5px;
  border: none;
  border-radius: 10px;
  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}

.current a:hover {
  background-color: black;
  color: white;
  padding: 5px 10px;
}

.current a:active {
  opacity: 0.6;
}

.current-pictures {
  margin-top: 30px;
  width: 90%;
  height: fit-content;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.current-pictures .pictures-information {
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 30px;
  height: 30px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.current-pictures .pictures-information .title, .date {
  font-size: 22px;
  font-weight: 530;
  color: rgb(2,28,30);
}

.current-pictures .pictures-container {
  margin: 30px;
  margin-bottom: 50px;
  height: fit-content;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.current-pictures .pictures-container .picture-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.current-pictures .pictures-container .picture-grid img {
  height: 250px;
  object-fit: cover;
}

.current-pictures .mehr {
  position: absolute;
  bottom: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.current-pictures .mehr-link {
  color: rgb(250, 132, 43);
  padding: 5px;
  border: none;
  border-radius: 10px;
  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}

.current-pictures .mehr-link:hover {
  background-color: rgb(250, 132, 43);
  color: white;
  padding: 5px 10px;
}

.current-pictures .mehr-link:active {
  opacity: 0.6;
}

.current-blog {
  margin-top: 30px;
  width: 90%;
  height: 500px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 50;

  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
}

.blog-information {
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 30px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  z-index: 75;
}

.blog-information .title, .date {
  font-size: 22px;
  font-weight: 530;
  color: rgb(2,28,30);
}

.current-blog .text-box {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 60px;
  bottom: 60px;
  font-size: 18px;
  overflow: hidden;
}

.current-blog .mehr {
  position: absolute;
  bottom: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.current-blog a {
  color: rgb(250, 132, 43);
  padding: 5px;
  border: none;
  border-radius: 10px;
  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}

.current-blog a:hover {
  background-color: rgb(250, 132, 43);
  color: white;
  padding: 5px 10px;
}

.current-blog a:active {
  opacity: 0.6;
}

.best-picture {
  margin-top: 30px;
  width: fit-content;
  height: 650px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 50;
  padding: 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.best-picture .text {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.best-picture .container {
  height: 93%;
}

.best-picture .container img {
  height: 100%;
  border: 2px solid rgb(2,28,30);
  border-radius: 10px;
}

.danke-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.danke {
  font-size: 20px;
  color: rgb(2,28,30);
  width: 90%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.danke .title {
  color: rgb(250, 132, 43); 
  font-size: 22px; 
  font-weight: bold;
  margin-bottom: -10px;
}