@import "normalize.css";
@import "colors.css";
@import "fonts.css";
@import "default.css";
@import "header.css";
@import "burgermenu.css";
@import "footer.css";
@import "kontakt.css";
body{
    background-image: linear-gradient(to bottom, var(--bg-3), var(--bg-1));
    background-repeat: no-repeat;
    background-color: var(--bg-1);
}
#container{
    margin:0.5em auto 1em auto;
    box-sizing: border-box;
    min-height:calc(100% - 1.5em);
    display: flex;
    flex-direction: column;
    background-color: var(--bg-4);
    box-shadow: 4px 4px 5px var(--box-shadow);
    border:1px solid var(--border-col);
}
.wide{
    max-width: 95%;
}
.regular{
    max-width: 1000px;
}

@media only screen and (max-width: 1040px) {
    #container{
        box-shadow: none;
        width: 100%;
        margin:0;
    }
}

#content{
    box-sizing: border-box;
    min-height: 10px;
    order: 2;
    flex-grow: 1;
    padding: 2em;
}

.centered-content{
    text-align: center;
}

.left-content{
    text-align: left;
}

.circle-item{
    display: block;
    margin-bottom: 1em;
    text-align: center;
}
.circle-item::before{
    content: "\25EF";
    margin-right: 0.5em;
    position: relative;
    top:-2px;
}
.circle-item:last-child{
    margin-bottom: 0;
}
a.stdlink{
    color: var(--text-col);
}
a.stdlink:hover{
    color:var(--link-hover);
}
a.highlighted{
    background-color: var(--link-highlighted);
    padding: 0 0.5em;
}
a.highlighted:hover{
    background-color: var(--link-highlighted-hover);
    color:var(--link-hover);
}
a.download{
    text-decoration: underline;
}

a.download:hover,
a[href*="tel:"]:hover,
a[href*="mailto:"]:hover{
    color:var(--link-hover);
}
a[href*="tel:"] img,
img.icon,
a.download img{
    position: relative;
    top:5px;
}
.impressum-head div{
    margin: auto;
    width: 215px;
    padding-left: 50px;
}
img.shadow{
    box-shadow: 2px 2px 10px var(--box-shadow);
}

img.max80portrait{
	max-width: 534px;
}
@media only screen and (max-width: 650px) {
	img.max80portrait{
		max-width: 80%;
	}
}
@media only screen and (max-width: 650px) {

}
ol li{
    margin-bottom: 1.75rem;
}

ul.dash-list {
    list-style: none; /* Remove HTML bullets */
    padding: 0;
    margin: 0;
}
ul.dash-list li { 
    padding-left: 16px; 
}
ul.dash-list li::before {
    content: "-";
    padding-right: 8px;
}

div.centered{
    margin:auto;
}