/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #6a5acd;
    color: #fff;
    padding: 1em;
    text-align: center;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000; /* Text color for sections over white background */
}

footer {
    background-color: #6a5acd;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Typography */
h1, h2 {
    color: #6a5acd;
}

/* Links */
a {
    color: #6a5acd;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #4b0082;
}

/* Responsive Styles */
@media (max-width: 600px) {
    section {
        padding: 10px;
    }
}

.tournament-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Add border-radius or other styles as needed */
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav a {
    color: #fff; /* Text color for the links */
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700; /* Change color on hover */
}

.left-image,
.right-image {

    height: auto;
    margin-top: 0px; /* Adjust the margin as needed */
}

.left-image {
    float: left;
    margin-right: 20px;
    border: #6a5acd;
    width: 300px; /* Adjust the width as needed */
}

.right-image {
    float: right;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 50px;
    border: #6a5acd;
    width: 250px; /* Adjust the width as needed */

}


/* Add more styles as needed */
