@import url('./reset.css');


:root {
    --color-background: #232323; 
    --color-text: #fff;
    --color-company-primary: #03588a; /* idas dunkelblau */
    --color-company-secondary: #33a5e7; /* idas hellblau */

    /* Charts */ 
    --color-chart-1: #1F466F;
    --color-chart-2: #2E70B9;
    --color-chart-3: #4CA1E9;
    --color-chart-4: #84BBE8;
    --color-chart-5: #ACCDE9;
    --color-chart-6: #A5A5A5;
    --color-chart-7: #565656;
}


/* --------------------------------------- */
/* Schriftart einbinden */
/* --------------------------------------- */


body {
    height: 100%;
    background-color: var(--color-background);
    font-family: sans-serif;
    color: var(--color-text) /* Schriftfarbe */;
    margin: 0;
    padding: 0;
}


/* --------------------------------------- */
/* Headings */
/* --------------------------------------- */
h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.0;
}

h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.0;
}

h3 {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.0;
}


h4 {
    font-size: 1.5rem;
    padding-left: 7rem;
    margin-top: 0rem;
    font-weight: lighter;
    margin-bottom: 0.75rem;
}


h5 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p, a  {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}


li  {
    font-size: 1.2rem;
    line-height: 1.0;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 480px) {
    h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.0;
    }

    h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.0;
    }


h3 {
    font-size: 1.5rem;
}


h4 {
    font-size: 1.2rem;
}


h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1.0rem;
}


    p,a  {
    font-size: 1.0rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
    li  {
    font-size: 1.0rem;
    line-height: 1.0;
    margin-bottom: 0.5rem;
    }

}


/* --------------------------------------- */
/* Links */
/* --------------------------------------- */
a {
    color: var(--color-company-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-background);
}

/* --------------------------------------- */
/* Buttons */
/* --------------------------------------- */
button,
.button {
    display: block;
    padding: 10px 25px;
    margin: 30px auto;
    font-weight: bold;
    border: 2px solid var(--color-text);
    border-radius: 30px;
    background-color: var(--color-company-primary);
    color: var(--color-text);
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button left alignment */
button.--left,
.button.--left {
    margin: 30px 0;
}


button:hover,
.button:hover {
    background-color: var(--color-text);
    color: var(--color-company-primary);
    border: 2px solid var(--color-company-primary);
}


/* --------------------------------------- */
/* empty page */
/* --------------------------------------- */
.empty-page {
    text-align: center;
    padding: 2rem 8rem;
}

.icon {
    width: 64px;
    height: 64px;
}