 body {

font-size: 16px;

  background-image: url("/img/background.jpg");
background-repeat: no-repeat;
  background-attachment: fixed;
        }

.container{
 background-color: rgba(255, 255, 255, 0.5);
border-radius: 10px;
padding-bottom: 25px;
}

        .header {
            /* background-color: #007bff; */
            color: #000000;
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
        }
        .title{
            text-align: center;
            padding: 15px;
            text-transform: uppercase;
        }

.title:after, .title:before {
    content: "•";
    color: #b83b3b;
    margin:0 5px;
}





        .stat-section {
            display: flex;
            flex-wrap: wrap;
            margin-top: 20px;

        }
        .stat-box {
            background-color: white;
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            margin: 10px;
            flex: 1 1 20%; /* Flex basis voor statistieke boxen */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .valor {
            background-color: #ffe6e6;
            border: 1px solid #ff0000;
        }
        .mystic {
            background-color: #e6f0ff;
            border: 1px solid #0066ff;
        }
        .instinct {
            background-color: #ffffe6;
            border: 1px solid #ffcc00;
        }
        .uncontested {
            background-color: #e6e6e6;
            border: 1px solid #808080;
        }
        .topimage {
            width: 50px;  
            height: auto;
        }
        .footer {
            text-align: center;
           
            padding: 10px;
            background-color: #66B2FF;
            color: white;
            height: 50px;
      
        }
		.footer a {
            color: #FFF;
        font-weight: bold;
            }

        @media (max-width: 768px) {
            .stat-box {
                flex: 1 1 100%; 
            }
            .gym-box {
                flex: 1 1 100%; 
            }
            .header {
                padding: 10px; 
            }
        }