@font-face {
    font-family: SanFrancisco;
    src: url(../css/SF-Pro-Display-Medium.otf);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    transition: all 250ms ease;
}

p,
a,
h1,
h2,
h3 {
    font-family: SanFrancisco;
    letter-spacing: 0.031em;
}

body {
    background-color: #E8E8ED;
    gap: 0.5em;
}

header {
    position: fixed;
    top:0; left:0; right:0;
    background: #000000;
    box-shadow: 0 0em 0.625em #101010;
    padding: 0em 10%;
    display: flex;
    z-index: 1000;
}

header .h {
    background-color: #000000;
    align-items: center;
}

header img {
    justify-content: left;
}

header .navbar ul {
    list-style: none;
    align-items: center;
}

header .navbar ul li {
    position: relative;
    float: left;
    align-items: center;
}

header .navbar ul li a {
    font-size: 1.25em;
    padding: 1.563em 1.563em;
    color: #E8E8ED;
    display: block;
    font-size: 1em;
    align-items: center;
}

header .navbar ul li a:hover {
    background: rgba(68, 68, 68, 0.8);
    color: #E8E8ED;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 12.5em;
    background: #000000;
    display: none;
    align-items: center;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 0.063em solid rgba(109, 109, 109, 0.3);
    background-color: rgba(68, 68, 68, 0.8);
    box-shadow: 0 0.313em 0.625em rgba(68, 68, 68, 0.8);
    align-items: center;
}

header .navbar ul li:hover > ul {
    display: initial;
    align-items: center;
}

text {
    display: block;
    width: auto;
    padding: 5.625em 3.125em 3em 5em;
    background-color: #fff;
    color: #000;
}

footer {
    display: flex;
    width: auto;
    padding: 0.625em 3.125em 1em 5em;
    background-color:  #E8E8ED;
    justify-content: center;
}

text h1,
text h2 {
    display: flex;
    padding: 0em 0em 0.375em 0em;
    justify-content: center;
}

text h3 {
    display: flex;
    padding: 0em 0em 0em 0em;
}

text p {
    flex-direction: column;
}

text a,
text p {
    padding: 0.625em 0em 1em 0em;
    color: #000;
}

footer a,
footer p {
    font-size: 0.938em;
    padding: 0.625em;
    color:#000;
}

text a:hover,
footer a:hover {
    cursor: pointer;
    text-decoration: underline;
}

bild {
    display: flex;
    flex-direction: row;
    padding: 0em 0em 1em 0em;
}

bildtext {
    display: flex;
    flex-direction: column;
    padding: 0.625em 1.563em 1em 2.5em;
    background-color: #E8E8ED;
}