body {
    font-family: Arial, sans-serif;
    background-color: #7a8b8b;;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

header {
    position: fixed;
	margin-top: 0;
    width: 96%;
    font-family: courier, courier new, verdana sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(25, 35, 35, 0.6);
    border-radius: 0 0 20px 20px;
    color: white;
    font-size: 2rem;
}

footer {
    position: fixed;
	margin: 4px;
	font-size: 0.6em;
	color: #999;
	align-self: flex-start;
	margin-left: 30px;
	margin-bottom: -6px;
	z-index: 1000;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 70%;
    height: 1000px;
    margin-top: 160px; /* leicht nach unten versetzt */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(40, 40, 40, 0.2);
    box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.5); /* Schatten für 3D-Effekt */
    border-radius: 8px;
    overflow-y: hidden;
}

.back-to-main {
    position: fixed;
    top: 125px; /* Unter dem Header */
    left: 5%;
    width: 50px;
    height: 50px;
	border-radius: 50%;
    background-image: url('module/back-buttn.png');
    background-size: cover;
	z-index: 1000;
}

.text {
    position: fixed;
    font-family: courier, new courier, sans-serif;
    font-size: 1.6em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 120px;
    z-index: 1000;
}

.text1 {
    font-family: verdana, sans-serif;
    font-size: 0.8em;
    text-align: left;
    width: 65%;
    height: 70%;
    color: #333;
    margin: 10px;
    overflow-y: auto;
}

@media (max-width: 768px) {
  .text1 {
    width: 75%; /* Breite auf kleineren Bildschirmen anpassen */
    margin: 2px;
  }
}

@media (max-width: 480px) {
  .text1 {
    width: 100%; /* Noch breiter auf sehr kleinen Bildschirmen */
    margin: 0;
  }
}

.f00ter {
    background-color: rgba(25, 35, 35, 0.6);
	padding: 3px;
	margin: 10px;
	width: 96%;
	text-align: center;
	font-size: 0.6em;
	color: #999999;
	align-self: auto;
}

.btm {
    position: fixed;
    font-family: courier, sans-serif;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.5);
    align-self: flex-start;
    margin-top: 90px;
    margin-left: 60px;
    z-index: 1000;
}

.micblog-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    background-color: #666666;
    font-family: courier, new courier, sans-serif;
    font-size: 0.8em;
    width: 600px;
    height: 220px;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    overflow-y: auto;
}

@media (max-width: 768px) {
  .micblog-container {
    width: 95%; /* Breite auf kleineren Bildschirmen anpassen */
  }
}

@media (max-width: 480px) {
  .micblog-container {
    width: 100%; /* Noch breiter auf sehr kleinen Bildschirmen */
  }
}

.micblog-date {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
}

.micblog {
    flex: 1;
    margin-left: 110px;
    margin-bottom: 10px;
    color: #9FB6CD;
}

.micblog-entry {
    flex: 0 0 150px;
    padding-right: 10px;
    font-weight: bold;
}

.divider {
    width: 100%;
    border: 0;
}

.logo {
    margin: 20px;

}