/* style.css */

/* Resetowanie domyślnych styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dodaj swoje style tutaj */
body {
    background-color: black;
    margin-top: 20px;
    margin-left: 20px;
    color: white;
}

a {
    color: white;
    text-decoration: none;
}
