body {
    /* background-image: url('images/background.jpg'); */
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-color: black;
    text-align: center;
    color: white;
    font-size: 14px;
    font-family: pokemon-classic;
}

header {
    position: sticky;
    top: 0;
}

ul {
    padding:0;
}
div span {
    word-spacing: 5px;
}
div span a {
    font-family: pokemon-classic;
    font-size: 80%;
}
ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: bold;
    padding: 3px;
    font-family: ketchum-font;
}
.navbar {
    /* background-color: rgba(58, 247, 0, 0.7); */
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(71, 255, 86, 0.8));
    padding: 0px;
    width: 100%;
    margin: 0 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
a {
    color: black;
}
a:visited {
    color: black;
}
a:hover {
    color: white;
}
.shinyhunts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border: 1px solid rgb(0, 0, 0);
    width: 100%;
}
.shinyhunts-child {
    margin: 10px;
    border: 1px solid rgb(0, 0, 0);
}
.footer {
    position: fixed;
    bottom: 0;
    width: 15%;
    text-align: center;
    font-size: 10px;
    background-color: rgba(58, 247, 0, 0.7);
    padding: 10px;
    color: white;
    box-shadow: 0 0 20px rgba(58, 247, 0, 0.7), 0 0 40px rgba(58, 247, 0, 0.7),
            0 0 60px rgba(58, 247, 0, 0.7);
            transition: box-shadow 0.3s;
    border-radius: 50%;
    margin-left: 1%;
    margin-bottom: 1%;
}
table{
    border: 1px solid transparent;
    padding: 20px;
    width: 50%;
    margin: 0 auto;
}
table tr td {
    width: 33%;
    text-align: center;
}
form {
    border: 1px solid transparent;
    width: 20%;
    /* height: 50%; */
    margin: 0 auto;
    margin-top: 1%;
    padding: 1%;
    background-color: rgb(32, 32, 32);
    box-shadow: 0 0 20px rgba(58, 247, 0, 0.7), 0 0 40px rgba(58, 247, 0, 0.7),
    0 0 60px rgba(58, 247, 0, 0.7);
    transition: box-shadow 0.3s;
}
.input-label {
    margin: 0;
    margin-bottom: 4px;
    margin-top: 12px;
}
.input-field {
    width: 95%;
}
h1 {
    padding: 2%;
}
#btn-submit{
    background-color: rgba(58, 247, 0, 0.7);
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(58, 247, 0, 0.7), 0 0 40px rgba(58, 247, 0, 0.7),
    0 0 60px rgba(58, 247, 0, 0.7);
    transition: box-shadow 1.8s, background-color 1.8s;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
#btn-submit:hover{
    background-color: rgba(37, 158, 0, 0.7);
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(37, 158, 0, 0.7), 0 0 40px rgba(37, 158, 0, 0.7),
    0 0 60px rgba(37, 158, 0, 0.7);
    transition: box-shadow 0.8s, background-color 0.8s;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
#btn-register{
    background-color: rgba(58, 247, 0, 0.7);
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(58, 247, 0, 0.7), 0 0 40px rgba(58, 247, 0, 0.7),
    0 0 60px rgba(58, 247, 0, 0.7);
    transition: box-shadow 1.8s, background-color 1.8s;
    height: 50px;
    width: 80px;
    cursor: pointer;
}
#btn-register:hover{
    background-color: rgba(37, 158, 0, 0.7);
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(37, 158, 0, 0.7), 0 0 40px rgba(37, 158, 0, 0.7),
    0 0 60px rgba(37, 158, 0, 0.7);
    transition: box-shadow 0.8s, background-color 0.8s;
    height: 50px;
    width: 80px;
    cursor: pointer;
}

.drop-shadow {
    width: 45%;
    -webkit-filter: drop-shadow(0 0 10px #00ff0d);
    filter: drop-shadow(0 0 10px #00ff0d);
    animation: switch-shadow 5s infinite;
}
main {
    width: 100%;
}

@keyframes switch-shadow {
    0% {
        -webkit-filter: drop-shadow(0 0 10px #00ff0d);
        filter: drop-shadow(0 0 20px #00ff0d);
    }
    50% {
        -webkit-filter: drop-shadow(0 0 20px #00ff0d);
        filter: drop-shadow(0 0 45px #00ff0d);
    }
    100% {
        -webkit-filter: drop-shadow(0 0 10px #00ff0d);
        filter: drop-shadow(0 0 20px #00ff0d);
    }
}

@media (max-width: 600px) {
    .img-hide{
        display:none;
    }
    .shinyhunts-container {
        grid-template-columns: 1fr;
    }
    .navbar {
        width: 100%;
    }
    .footer {
        width: 90%;
        margin-top: 50px;
    }
    .shinyhunts-child {
        margin: 5px;
    }
    body {
        font-size: 10px;
    }
    table {
        width: 100%;
    }
    form {
        width:60%
    }
    .input-label {
    margin: 0;
    margin-bottom: 4px;
    margin-top: 12px;
    }
    .input-field {
        width: 95%;
    }
}

@media (max-width: 1000px) and (min-width: 601px) {
    .shinyhunts-container {
        grid-template-columns: 1fr 1fr;
    }
    .navbar {
        width: 100%;
    }
    .footer {
        width: 90%;
        margin-top: 50px;
    }
    .shinyhunts-child {
        margin: 5px;
    }
    body {
        font-size: 12px;
    }
    table {
        width: 100%;
    }
    form {
        width:40%
    }
    .input-label {
    margin: 0;
    margin-bottom: 4px;
    margin-top: 12px;
    }
    .input-field {
        width: 95%;
    }
}

@media (max-width: 1250px) {
    .footer {
        position: relative;
    }
}

@font-face {
    font-family: ketchum-font;
    src: url(fonts/Ketchum.otf) format('opentype');
}
@font-face {
    font-family: pokemon-classic;
    src: url(fonts/Pokemon_Classic.ttf) format('truetype');
}






/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-left: 20px;
}

.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Desktop nav links */
.nav-links a {
    color: black;
    font-weight: bold;
    font-family: Pokemon-Classic;
    font-size: 16px;
    margin-right: 20px;
    text-decoration: none;
}

.nav-links a:hover {
    color: white;
}

/* Responsive: show hamburger, hide nav links */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(71, 255, 86, 0.8));
        position: absolute;
        top: 60px; /* adjust based on navbar height */
        right: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        color: black;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}







#container {
    width: 99vw;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.item {
    padding: 20px;
    max-width: 300px;
}

.hunting-images {
    height: 100px;
}






/* Mobile Devices */
@media screen and (max-width: 480px) {}

/* iPads, Tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {}

/* Small screens, laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {}

/* Desktops, large screens */
@media screen and (min-width: 1025px) and (max-width: 1200px) {}

/* Extra large screens, TV */
@media screen and (min-width: 1201px) and (max-width: 1920px) {}