﻿
/* Hintergrundbild für die Startseite */
.home-background {
    background-image: url('images//Holzhütte.png'); /* Bildpfad */
    background-size: auto 100%; /*cover;*/ /* Skaliert das Bild, damit es den gesamten Bereich abdeckt */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert Wiederholung */
    width: 100%;
    height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Textfarbe */
    text-align: center;
}

.profile-box {
    margin-bottom: 20px;
    text-align: center;
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 3px solid #ddd;
}
.table-profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
