@font-face {
    font-family: 'Fishmonger CR Plain'; /* Use the name of the font */
    src: url('font/Fishmonger\ CR\ Plain.otf') format('truetype'); /* Adjust the path and format as needed */
    font-weight: normal; /* Adjust if necessary */
    font-style: normal; /* Adjust if necessary */
}

body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    color: white;
    font-family: 'Fishmonger CR Plain';
}
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Place video behind other content */
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
    z-index: 0; /* Ensure overlay is above the video but below the container */
}

.container {
    max-width: 500px; /* Limit the width of the form */
    padding: 20px;
    background-color: #003300;
    border-radius: 26px; /* Rounded corners */
    box-shadow:  17px 17px 0px #002800,-17px -17px 0px #003e00;
    z-index: 1; /* Ensure the container is above the video */
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
}

.custom-button {
    background-color: #DAA520; /* Gold color */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 15px; /* Rounded corners */
    padding: 10px 20px; /* Padding */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Transition effect */
}

.custom-button:hover {
    background-color: #B8860B; /* Darker gold on hover */
}

@media (max-width: 576px) {
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
    }
}