body, html {
    margin: 0;
    padding: 0;

}
.fullscreen-div {
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box; /* Damit padding und border in die Breite und Höhe einbezogen werden */
    /*overflow: auto; /* Ermöglicht Scrollen, falls der Inhalt größer als der Bildschirm ist */
}

.main-color {
    background-color: #f0ddf6 !important;
}

.main-color-darker {
    background-color: #eabafa !important;
}

.linkedin-btn {
    background-color: white;
}

.linkedin-btn:hover {
    background-color: black;
    color: white;
}

.full-height {
    height: 100vh;
}

.img-profile {
    height: 2em;
    width: auto;
    margin-right: 20px;
}

.bottom-border {
    border-bottom:  3px inset #ffffff;
}

.img-hello {
    max-width: 70%;
    max-height: 70%;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 2em; /* Höhe des Footers */
    /* line-height: 50px; /* Zentriert den Text vertikal */
}

.footer a {
    color: #eabafa;
    text-decoration: none;
}

.footer a:hover {
    color: #eabafa;
}

@media (max-width: 576px) { /* Bootstrap's kleinstes Breakpoint für Mobiltelefone */
    .fullscreen-div {
        min-height: auto; /* Höhe an den Inhalt anpassen */
        width: auto; /* Breite an den Viewport anpassen */
    }
}