/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Container */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center; /* Center the logo and banners */
    padding: 20px 0;
}

.logo h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px; /* Space between logo and banners */
}
.logo img {
    width: autopx;
    height: 150px;
    padding-bottom: 15px;
    padding-right: 30px;
}

.banner {
    display: flex;
    justify-content: center; /* Center the banner GIFs */
    gap: 20px; /* Space between GIFs */
}

.banner img {
    width: auto;
    height: auto;
}

/* Info Section */
.info {
    margin: 30px 0;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    text-align: center;
}

/* Masonry Layout */
.masonry {
    column-count: 3; /* Adjust the column count as needed */
    column-gap: 20px;
}

.masonry-item {
    background-color: #444;
    margin-bottom: 20px;
    padding: 20px;
    break-inside: avoid;
    border-radius: 10px;
}

.masonry-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #b81327;
}

.masonry-item ul {
    list-style-type: none;
}

.masonry-item ul li {
    margin-bottom: 8px;
}

.masonry-item ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;  /* Updated to inline-block for multiple links */
    border-radius: 5px;
    background-color: #555;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Add spacing between inline links */
}

.masonry-item ul li a:hover {
    background-color: #666;
}

/* Footer */
footer {
    margin-top: 30px;
    padding: 20px;
    background-color: #222;
    text-align: center;
    border-radius: 10px;

}
a:link {
    color: #b81327;
    background-color: transparent;
    text-decoration: none;
  }