body {
    margin: 0;
    box-sizing: border-box;
    font-style: normal;
    font-size: large;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: red;
    background-image: url("images/weirdcore.avif");
    background-attachment: fixed;
    background-repeat: inherit;
    background-color: black;
    height: 100vh;
}

body a:hover {
    color: rgb(255, 0, 140);
    font-style: italic;
}

body a {
    color: red;
}

img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
}

.mainpanel {
    width: 80%;
    margin: auto;
    margin-bottom: 2%;
    text-align: center;
    align-items: center;
    border: solid 1px;
    border-radius: 2px 2px 2px 2px;
}

.box {
    background-color: beige;
    width: 720px;
    box-shadow: 10px 14px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-top: 10px solid red;
    border-bottom: 2px solid red;
    border-left: 2px solid red;
    border-right: 2px solid red;
    margin: auto;
    margin-top: 2%;
    align-items: center;
    text-align: center;
}

.footer {
    margin-top: 10%;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: beige;
    color: red;
    border-top: 5px solid red;
    text-align: center;
}

.entrybox {
    background-color: beige;
    width: 360px;
    box-shadow: 10px 14px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-top: 10px solid red;
    border-bottom: 2px solid red;
    border-left: 2px solid red;
    border-right: 2px solid red;
    margin: auto;
    margin-top: 2%;
    align-items: center;
    text-align: center;
}

.player {
    background-color: beige;
    width: fit-content;
    box-shadow: 10px 14px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-top: 10px solid red;
    border-bottom: 2px solid red;
    border-left: 2px solid red;
    border-right: 2px solid red;
    margin: auto;
    margin-top: 2%;
    align-items: center;
    text-align: center;
}

.cursor {
    position: fixed;
    width: 48px;
    /* Adjust size to match your image */
    height: 48px;
    background-image: url('images/eye.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translate(-25%, -25%);
    z-index: 9999;
}
