/* Base Styles - This file is not necessary and can be your own "styles.css" etc. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    padding: 10px;
}

.center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    padding: 10px;
}

a#link-git {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background-color: #5c5c9e;
    border-radius: 4px;
    padding: 10px;
}

a#link-git:hover {
    color: #23234b;
}

a#link-git:active,
a#link-git:visited {
    color: #1d1d3e;
}

ul {
    display: block;
    padding: 10px;
    margin: auto;
    margin-left: 20px;
}