@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calibri:wght@300&display=swap');

body {
    margin: 0;
    font-family: 'IBM Plex Mono', monospace,  'Calibri', 'Calibri Light', sans-serif;
    background: #364f6b;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
}
.icons img {
    width: 30px;
    margin-left: 15px;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.logo {
    max-width: 250px;
    width: 70%;
}
.smaller-logo {
    max-width: 220px;
}
.tagline {
    font-size: 1.2em;
    margin-top: 1em;
    color: #fff;
}
.references {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    padding: 1em;
}
.references img {
    height: 40px;
}
.references .gimber {
    height: 30px;
}
.separator {
    color: #aaa;
    font-size: 1.5em;
    margin: 0 10px;
}
footer {
  background-color: #364f6b !important;
    text-align: center;
    font-size: 0.8em;
    padding: 1em;
    background: #111;
    color: #ccc;
}
.impressum-link {
    color: #ccc;
    text-decoration: underline;
}
.impressum-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4em 1em;
}
@media (max-width: 600px) {
    .references {
        flex-direction: column;
    }
    .separator {
        display: none;
    }
}

.button-link {
  background-color: #D9A273 !important;
    margin-top: 1.5em;
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}
.button-link:hover {
  background-color: #b98550 !important;
    background-color: #666;
}

.button-link {
  background-color: #D9A273 !important;
    margin-top: 1.5em;
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}
.button-link:hover {
  background-color: #b98550 !important;
    background-color: #666;
}

.compact-services p {
    margin: 0.4em 0;
}


.button:hover {
    background-color: #FF8C42;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}
