html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
}

    .image-container img {
        max-width: 300px;
        max-height: 100px;
        width: auto;
        height: auto;
    }


.player-info {    
    display: flex;
    padding-bottom: 0px;
    justify-content: space-between;    
}

.info-item {
    margin-right: 5px; /* Adjust the margin as needed for spacing */
}


html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #000;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    padding: 0px;
    text-transform: uppercase;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg2.webp') no-repeat center center fixed;
    background-size: cover;
}



.link-info {
    color: #008800; /* Adjust the color as needed */
    text-decoration: none;
}

    .link-info:hover {
        color: #008800; /* Adjust the color as needed */
        text-decoration: underline;
    }

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adjust shadow properties as needed */
    transition: box-shadow 0.3s ease-in-out;
 
}

    .card:hover {
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow properties as needed */
    }


.btn {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); /* Adjust shadow properties as needed */
    transition: box-shadow 0.3s ease-in-out;   
    margin-bottom: 6px;
}

    .btn:hover {
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow properties as needed */
    }

/* Remove hover effects for disabled buttons */
    .btn:disabled {
        opacity: 0.5;
        pointer-events: none;
    }

