.service-details {
    padding: 2rem;
    flex-grow: 1;
    height: 100%;
    text-align: center;
  }
nav {
        position: sticky;
        top: 0;

        background-color: var(--clr-background-dark);
        z-index: 99;
        display: flex;
        flex-direction: row;

        padding: 0 1.4rem;
    }

    .logo, nav a {
        font-family: "Ayar Juno";
        font-size: 1em;
        padding: 1rem 0;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        white-space: nowrap;
    }

    nav ol {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin: 0;
        gap: 1rem;
        flex-grow: 1;
        justify-content: flex-end;
    }
    nav li{
        margin: 0;
        padding: 0;
    }
    .logo{
        color: var(--whiteish);
    }
    nav li > a{
        display: block;
        color: var(--cool-steel-dark-lighter);
    }

    /*#popover-button,
    #popover-menu {
        background-color: var(--clr-background-dark);
        width: 100%;
        position: absolute;
        top: 7rem;
        display: none;
    }

    @media (width <=80ch) {

        #popover-button,
        #popover-menu {
            display: inherit;
        }

        .links {
            display: none;
        }
    }*/
footer {
    /*background-color: #81A2BF;*/
    background-color: var(--clr-background-dark);
    color: white;
    margin: 0;
    padding: 0;
    min-height: fit-content;
    padding: 2rem;
  }

  .contact-data{
    max-width: min(80em, 100%);
    margin-left: auto;
    margin-right: auto;
    min-height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem 3rem;
    line-height: 1.8em;
    flex-wrap: wrap;
  }
  .contact-data > *{
    min-width: fit-content;
    max-width: 100%;
    flex-grow: 0;
  }
  .contact-data a{
    color: white;
  }

  .bottom-line{
    margin-top: 2em;
    margin-bottom: -1em;
    padding: 0em;
    font-family: monospace;
    text-align: center;
  }
@font-face {
    font-family: "Ayar Juno";
    font-display: swap;
    src: url("/fonts/ayar_juno.ttf");
}
:root{
    /* CSS HEX */
    --cool-steel: #879fb4ff;
    --cool-steel2: oklch(80% 0.06 245);
    --slate-grey: #8191a3ff;
    --slate-grey-2: #7a8391ff;
    --antique-white: #fbebdbff;
    --cool-steel-2: #a3b0baff;
    --pale-slate: #afbac6ff;
    --whiteish: white; 
    --blackish: black; 
    --cool-steel-dark-lighter: oklch(80% 0.14 251);
    --cool-steel-dark-light: oklch(60% 0.14 251);
    --cool-steel-dark: oklch(50% 0.14 251);
    --cool-steel-dark: oklch(50% 0.10 251);
    --cool-steel-dark1: oklch(40% 0.14 251);
    --cool-steel-dark2: oklch(30% 0.12 251);

    --clr-background: var(--whiteish);
    --clr-background-alt: var(--cool-steel-dark);
    --clr-background-dark: var(--cool-steel-dark2);

    --clr-font: var(--blackish);
    --clr-font-inverted: var(--whiteish);

    --button-background: var(--cool-steel-dark-light);
    --link-clr: var(--cool-steel-dark-lighter);
    --article-border-radius: 1rem;

    --contentWidth: 80em;
}
body {
    padding: 0;
    margin: 0;
    font-size: 1em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    background-color: var(--clr-background);
    
    min-height: 100dvh;
    display:flex;
    flex-direction: column;
    position: relative;
}
main{
    flex-grow: 1;
    position: relative;
}

h1 {
    font-family: "Ayar Juno";
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    text-align: center;
}

h2 {
    font-size: 2.6em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: "Ayar Juno";
    /*line-height: 1.2em;
    border-bottom: 2px solid rgb(115, 132, 161);;*/
    line-height: 1;
    margin-bottom: 0.4em;
    margin-left: 0.2em;
    margin-right: 0.2em;
}

h3{
    font-family: "Ayar Juno";
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: 0.05em;
}

a, button{
    color: var(--link-clr);
}
a.pretty-btn,
button.pretty-btn{
    background: var(--button-background);
    box-sizing: border-box;
    display: inline-block;
    line-height: normal;
    color: var(--whiteish);
    border: 0;
    border-radius: 2em;
    padding: 0.8em 1.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
}

.testtext {
    color: pink;
}