/*===========================================================
   ====== Basis, Design-Variablen und Grundtypografie =======
   ==========================================================*/
:root {
    --color-1: #0f1016;
    --text-color: #f0f0f0;
    --accent-color: gray;
}

*{  /* (*) Universal selektor um alle standart Abstände zu entfernen*/
    margin: 0;
    padding: 0;
}

/*Farb Settings für alle Seiten*/
body {
    background-color: var(--color-1);
    color: var(--text-color);
    font-family: "Century Gothic", Arial, sans-serif;
}
