body {
    background-color: rgb(36, 33, 38);
    color: rgb(233, 226, 236);
}

div {
    text-align: center;
}


#btnline, #btnlinetwo {
    background-color: #2b5b2d; 
    color: white;             
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover effect */
#btnline:hover, #btnlinetwo:hover {
    background-color: #244925;
}

/* Active/click effect */
#btnline:active, #btnlinetwo:active {
    background-color: #244925;
    transform: scale(0.98);
}
.button {
    background-color: rgb(41, 67, 60);
    font-family: "Sixtyfour", sans-serif;
    border-radius: 10px;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }

.bot-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 80%;
}

.enemy {
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hit-flash {
    filter: brightness(0.5) sepia(1) hue-rotate(-30deg) saturate(8);
    transition: filter 0.05s ease;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(44, 44, 44);
    color: white;
    text-align: center;
}

@keyframes cog_up {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cog-1 {
    position: fixed;
    bottom: 0;
    right: -3%;
    width: 300px;
    animation-duration: 4s;
    animation: cog_up 45s linear infinite;
}

.cog-2 {
    position: fixed;
    bottom: 0;
    left: -5%;
    width: 300px;
    animation-duration: 4s;
    animation: cog_up 45s linear infinite;
}

.cog-3 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 250px;
    animation-duration: 4s;
    animation: cog_up 60s linear infinite;
}

.mobile-stats {
    display: none;
}
.Link {
    width:80px;
    position: absolute;
    
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 800px) {
    body {
        font-size: 90%;
        margin: 50px;
    }
    .cog-1 {
        width: 160px;
    }
    .cog-2 {
        bottom: 5px;
        right: 20px;
        width: 190px;
    }
    .cog-3 {
        width: 150px;
    }
    .wide-stats {
        display: none;
    }
    .mobile-stats {
        display: block;
    }
    .Link {
        width:80px;
        position: fixed;
        top:10px;
        left: 0;
    }
}
#stats2 {
    white-space: pre-line;
}

