html {
    cursor: none;
}

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    background-color: #d4af37;
    text-align: center;
    margin: 0;
    padding: 0;
}

#custom-cursor {
    position: absolute;
    z-index: 9999;
    pointer-events: none; /* makes the element non-blocking for clicks */
    width: 32px;
    height: 32px;
    background-image: url("images/sword_frame_1.png");
    background-size: cover;
}

h1 {
    color: #0000ff;
    text-decoration: underline;
}

h2 {
    color: #ff4500;
}

p {
    color: #008000;
    font-size: 18px;
}

.container {
    padding-top: 10%;
}

.hit-counter {
    background-color: #ffffff;
    padding: 10px;
    border: 2px solid #000000;
    font-size: 24px;
    margin-top: 20px;
}

.footer {
    color: #fff;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.marquee {
    color: #ff0000;
    font-size: 24px;
}

.hidden {
    display: none;
}

/* contact form */
.contact {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    visibility: hidden; /* Start invisible */
    transform: translateY(100%); /* Start below its starting position */
    transition:
        visibility 0s,
        transform 0.5s ease-out;
    transition-delay: 0s, 0s, 0s;
}

.visible {
    visibility: visible; /* Make it visible */
    transform: translateY(0%); /* Move to its natural position */
    transition-delay: 0s, 0s, 0s;
}

.contact .close {
    text-align: right;
    margin: 0 20px;
    font-size: larger;
}

.contact form {
    display: inline-block;
    text-align: left;
}

.contact input[type="text"],
.contact input[type="date"],
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact input[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact input[type="submit"]:hover {
    background-color: #45a049;
}
