/* TODO: improve css, use less inline css and actually make site look nice 👽 */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #282c34;
    color: #ffffff;
}
h1,
h2 {
    text-align: center;
    margin: 20px 0;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

p,
li {
    font-size: 1.2em;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

/* TODO: replace with cleaner animation that dosent look as borked on a bad connection */
/* @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} */
