body {
    font-family: 'Maven Pro', sans-serif;
    background-color: #232323;
    color: #ffffff;
    margin: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    /*max-width: 900px;*/
    text-align: left;
    z-index: 1;
    padding-top: 7rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.375rem;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.breadcrumbs {
    margin-top: 25px;
    color: #ff4d01;
}

.breadcrumbs p {
    color: #ff4d01;
}

.breadcrumb-bold {
    font-weight: 700;
}

.section-title {
    color: #ff4d01;
    margin-top: 40px;
    font-weight: 700;
}

.section-title-contact {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 0;
}

.container a {
    color: #ff4d01;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.subtitle {
    color: #ff4d01;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 32px;
}

.contact-box {
  background-color: #1a1a1ab3;
  padding: 32px;
  border-radius: 16px;
  margin-top: 40px;
}

.contact-us-text {
    margin-bottom: 0 !important;
}

.noUnderline {
    text-decoration: none !important;
}

.game-rules {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
gap: 20px;
}

.game-rules-card {
    margin-top: 20px;
}
.game-rules-card img{
width: 200px; /* Set desired width */
height: auto; /* Keeps aspect ratio */
transition: transform 0.3s; /* Adds a smooth scaling effect */
}

.game-rules-card img:hover {
transform: scale(1.05); /* Slightly enlarges image on hover */
}

.active {
position: relative;
top: 5px;
}

@media screen and (max-width: 768px) {
    .game-rules {
        flex-direction: column;
        align-content: flex-start;
    }
    .game-rules-card img{
        width: 100%; /* Set desired width */
        height: auto; /* Keeps aspect ratio */
}
.inactive {
    position: relative;
    left: -10px;
    }
}