html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: -1;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-20vh);
    position: relative;
}

h1 {
    color: white;
    font-size: 64px;
    text-shadow: 2px 2px 4px black;
    margin: 0 0 30px 0;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

button {
    width: 220px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    font-family: monospace;
}

#menu-content {
    position: absolute;
    top: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu-content .new-angler-forms {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border-radius: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

#menu-content .new-angler-forms label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #222;
    min-width: 180px;
}

#menu-content .new-angler-forms select {
    width: 180px;
    padding: 8px 10px;
    font-size: 16px;
    font-family: monospace;
}

#menu-content .new-angler-forms .angler-button {
    width: 240px;
}

#menu-content h2 {
    margin: 15px 0 5px;
    color: rgb(41, 41, 41);
    text-align: center;
}

#menu-content table {
    border-collapse: collapse;
    color: white;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    overflow: hidden;
}

#menu-content th,
#menu-content td {
    padding: 6px 16px;
    text-align: center;
}

#menu-content th {
    background: rgba(255, 255, 255, 0.15);
}

#menu-content p {
    margin: -5px 0 15px;
    color: rgb(98, 98, 98);
    font-size: 14px;
    font-size: 18px;
}

#loading {
    color: white;
    font-size: 18px;
}

.angler-button {
    width: 220px;
    margin: 5px;
    padding: 10px;
    font-size: 15px;
    font-family: monospace;
}

.ljf-footer {
    position: fixed;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
    pointer-events: none;
    font-size: 18px;
}

.title-description {
    text-align: center;
    font-size: 16px;
    font-size: 18px;
}