/*Basis Farben Website /(Biblioteksfähig)*/
:root{
    --main-brand-color:#297AE3;
    --praimary-color:#15171c;
    --secondary-color:#232933;
    --light-secondary-color:#2E3744;
    --text-color:white;
    --secondary-text-color:#B3b4b6;
}
*{
    font-family: 'Roboto Slab', serif;
}
*{
    margin:0;
    padding:0;
}
body{
    min-height: 100vh;
    background-color:var(--praimary-color) ;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color:var(--text-color);
}
h1{
    font-size: 70px;
    line-height:115% ;
}
h3{
    font-size: 38px;
}
.subbheading{
    margin-top: 25px;
    color:var(--secondary-text-color)

}
.Link-Data{
    text-decoration: none;
    color:aliceblue;
}
.Link-Data:hover{
    color: #15171c;
}
.Blue-Line{
    text-align: center;
}
@media(max-width:800px){
    h1{
        font-size: 12vw;
        text-align: center;
    }
    .subbheading{
        text-align: center;
    }
}