/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: white;
    line-height: 1;
}

/* Header styles */
.top-header {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
    border-bottom: 1px solid #ffffff;
}

.logo-left, .logo-right {
    width: 120px;
    height: 70px;
}

.logo-left img, .logo-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

/* Navigation styles */
.main-nav {
    background-color: #000000;
    padding: 15px 0;
    margin-bottom: 30px;
    font-family: 'oswald';
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.main-nav a.active {
    color: red;
}

/* Main container styles */
.championnats {
    padding: 20px;
    background-color: black;
    max-width: 600px;
    margin: 0 auto;
}

.championnats h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}



.boxeur-text {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    
}

.image-container {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.boxeur-img {
    display: block;
    margin: 10px 0;
    max-width: 95%;
    height: auto;
    border: 2px solid #fff;
}

/* Footer styles */
.footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
    color: white;
    border-top: 1px solid #333;
}

.footer p, .footer-link {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-link {
    color: #f5a623;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
    }
    .top-header {
        padding: 7px;
    }

    .logo-left, .logo-right {
        width: 60px;
    }

    .main-nav ul {
        gap: 20px;
        padding: 0 15px;
    }

    .boxeur {
        flex-direction: column;
    }

    .footer p, .footer-link {
        font-size: 12px;
    }
}
