@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600&display=swap');

body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d00027;
    color: white;
}

header {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

button {
    background-color: #fff;
    color: #d00027;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #f2f2f2;
}

.latest-news {
    text-align: center;
    padding: 20px;
    background-color: #a6001c;
}

.latest-news article {
    margin: 20px auto;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.latest-news img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin: 10px 0;
}

.team {
    text-align: center;
    padding: 40px 20px;
}

.team .player {
    display: inline-block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    max-width: 250px;
}

.team img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.history {
    text-align: center;
    padding: 40px 20px;
}

.history img {
    display: block;
    margin: 20px auto;
    max-width: 600px;
    width: 100%;
    height: auto;
}

.history ul {
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 20px auto;
}

.contact {
    text-align: center;
    padding: 40px 20px;
}

.contact p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.contact img.funny-image {
    display: block;
    margin: 20px auto;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #000;
    color: #fff;
}
