@font-face {
    font-family: 'Home Video';
    src: url('../font/home-video/HomeVideo-BLG6G.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

h1 {
    font-family: 'Home Video', sans-serif;
    background-color: #ee54b2;
    color: black;
    margin-bottom: 20px;
    padding: 3px 10px;
    display: inline-block;
}

h2 {
    font-family: 'Home Video', sans-serif; /* Changed to match h1 font */
    margin-top: 30px;
    margin-bottom: 15px;
    background-color: #ee54b2;
    color: black;
    padding: 3px 10px;
    display: inline-block;
}

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 {
    font-family: 'Home Video', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    display: block;
}

a:hover {
    color: #3ec4e3;
}

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

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