﻿/* Allgemein */
body {
    font-family: mainFont;
    margin: 10px 10px 0px 10px;
}

dl dt {
    font-weight: bold;
    margin-inline-start: 30px;
}

dl dd {
    margin-inline-start: 30px !important;
}

/* Menüleiste */
.headerMenu {
    width: 100%;
    height: 60px;
    position: sticky;
    top: 0;
    background-color: white;
}

.headerMenuFirstRow {
    display: flex;
    flex-direction: row;
    height: 30px;
    padding: 5px;
    background-color: white;
}

.headerMenuSecondRow {
    display: flex;
    flex-direction: row;
    height: 30px;
    padding: 5px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    background-color: white;
}

.headerMenuSpan {
    height: 30px;
    width: 100%;
}

.headerMenuLoginContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    background-color: white;
    gap: 10px;
}

.headerMenuLinkContainerLeft {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: white;
}

.headerMenuLinkContainerRight {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: white;
}

.headerMenuButton {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    border: none;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

.headerMenuButton:hover {
    background-color: rgb(241 223 52);
    font-weight: bold;
}

.headerMenuLogIcon {
    font-family: iconFont;
    margin-left: 5px;
    cursor: pointer;
}

.mainPageContainer {
    min-height: 80vh;
    margin: 15px 50px 10px 50px;
    padding: 10% 45px 45px 45px;
    background-image: url('../graphic/mainpage_background.webp');
    background-size: 100%;
    background-repeat: no-repeat;
}

.mainPageText {
    color: white;
}

.mainPageTextBigger {
    font-size: 4em;
    font-weight: 1000;
}