@font-face {
    font-family: dinotlight;
    src: url(dinot-light.ttf);
    weight: light;
}

@font-face {
    font-family: dinotmedium;
    src: url(dinot-medium.ttf);
    weight: medium;
}

@font-face {
    font-family: dinotbold;
    src: url(dinot-bold.ttf);
    weight: bold;
}

@font-face {
    font-family: dinot;
    src: url(dinot.ttf);
    weight: regular;
}

body {
    display: flex;
    justify-content: center;
    font-family: 'dinot', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.2;
}

body .main {
    width: 800px;
    border: 1px solid black;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    margin: 0px 30px;
}

header .img {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: start;
    align-self: center;
}

header .img img {
    width: 80%;
    object-fit: contain;
}

header p {
    width: 50%;
    text-align: end;
    font-size: 22px;
    font-weight: 600;
    color: #DD0B2F;
}

.main .header {
    width: 100%;
}

.main main {
    margin: 0px 30px;
}
main .titel {
    font-family: 'dinotbold';
    color: #DD0B2F;
    font-size: 35px;
    margin-bottom: 0px;
}

main .subtitel {
    font-family: 'dinot';
    margin-top: 10px;
}

main .flex {
    display: flex;
    justify-content: center;
    gap: 30px;
}

main .flex .left, main .flex .right {
    width: calc(50% - 15px);
}

.block h1 {
    font-size: 18px;
    color: #DD0B2F;
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: 'dinotbold';
}

.block ul {
    margin-top: 0px;
    padding-left: 12px;
    list-style: none;
}

.block ul li {
    position: relative;
    margin-bottom: 8px;
    font-family: 14px;
}

.block ul li::before {
    position: absolute;
    left: -12px;
    content: '\2022';
    font-size: 16px;
}

.contact {
    background-color: #ddd8d4;
    padding: 30px;
}

.block p {
    margin-top: 0px;
    margin-bottom: 10px;
}

.block p strong {
    font-family: 'dinotmedium';
    font-weight: 700;
}

.block p a {
    text-decoration: none;
    color: black;
}

.contact .block p:last-of-type {
    margin-bottom: 0px;
}

footer .flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 30px;
}

footer .flex .left, footer .flex .right {
    width: calc(50% - 15px);
}

footer .block p {
    font-size: 16px;
}

footer .bewerben h2 {
    font-size: 20px;
    color: #DD0B2F;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'dinotbold';
}

footer .bewerben p {
    margin: 0px;
}

footer .bewerben a {
    color: #DD0B2F;
    font-family: 'dinotbold';
    text-decoration: none;
}