@font-face {
    font-family: 'Pixls';
    src: url('../font/pixls/Pixls.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: sans-serif;
    margin: 20px auto;
    max-width: 800px;
    padding: 40px 20px; /* Top/Bottom 40px, Left/Right 20px default */
    box-sizing: border-box; /* Include padding in the total width */
    background-color: black;
    color: white;
}

@media (max-width: 800px) {
    body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

h1 {
    font-family: 'Pixls', sans-serif;
    color: #ee54b2;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Pixls', sans-serif; /* Changed to match h1 font */
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ee54b2;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    margin-bottom: 15px;
    padding-left: 20px; /* Indent list items */
}

li {
    padding-bottom: 10px;
    line-height: 23px;
}

li b {
    color: #3ec4e3;
}

blockquote {
    margin: 20px 0;
    padding: 15px;
    border-left: 5px solid #3ec4e3;
    background-color: #1a1a1a;
    font-style: italic;
}

#back-to-home {
    position: fixed;
    top: 20px;
    left: 8px;
    font-family: 'Pixls', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 24px;
    z-index: 1000;
    padding: 5px 10px; /* Add some padding for better click area */
    cursor: pointer;
}

a:hover {
    color: #3ec4e3;
}

#back-to-home:hover {
    color: #3ec4e3;
}
