@font-face {
    font-family: 'jmh'; /* Specify a unique name for your font */
    src: url('https://files.catbox.moe/dwiory.otf') format('opentype'),
   
}

body {
    font-family: 'jmh', sans-serif; /* Use your custom font for the body or specific elements */
    margin: 0;
    padding: 0;
    font-size: 22px;
}

#background {
    background-image: url('https://cdn.discordapp.com/attachments/1052271047153569923/1187104508862546031/IMG_1207.png');
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#character img {
    max-width: 100%;
    max-height: 100%;
}

#dialogue-box {
    background-image: url('https://media.discordapp.net/attachments/1026277368089817098/1186499704402497668/IMG_1079.png');
    background-size: cover;
    width: 50%; /* Adjust the width as needed */
    height: 50%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px;
    border-radius: 10px;
    text-align: center;
}






/* Unvisited (normal) link color */
a {
    color: #0f2415; /* Set the color for unvisited links */
}

/* Visited link color */
a:visited {
    color: #0f2415; /* Set the color for visited links */
}

/* Hover effect for links */
a:hover {
    color: #00ff44; /* Set the color for links on hover */
}