/* CSS */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif; 
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.footer {
    background-color: #211F1D;
    color: #ab965d;
    font-family: MinionPro;
    padding: 20px 117px 20px 117px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 500px) { 
    .footer {
        padding: 20px 30px 20px 30px;
    }

}


.footer-links {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-links a {
    color: #ab965d;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

a.official-rules-link,
a.official-rules-link:visited {
    color: #ab965d;
    text-decoration: underline;
}

.h-7 {
    height: 28px;
    width: 28px;
    max-height: 28px;
    max-width: 28px;
}
.mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.fill-gold {
    fill: #ab965d;
}

.footer-text {
    font-size: 1.125rem; /* Suitable for both desktop and mobile */
    line-height: 1.5;
}

.bolded {
    font-family: MinionProBold;

}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
    object-fit: contain;
    max-width: 100%;
}

.underline {
    font-size: 1.05rem;
    color: #ab965d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

@font-face {
    font-family: MinionPro;
    src: url(MinionPro-Regular.otf);
  }
  @font-face {
    font-family: MinionProBold;
    src: url(MinionPro-Bold.otf);
  }

@media (max-width: 600px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin: 0;
    }

    .footer-text {
        font-size: 0.75rem;
    }
}