@font-face {
    font-family: "Splatfont2";
    src: url("../font/Splatfont2.ttf");
}

@font-face {
    font-family: "Splatfont1";
    src: url("../font/Splatfont1.ttf");
}

.container {
    max-width: none;
}

#clothing,
#shoes {
    display: none;
}

.brand-image {
    max-height: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 3px;
    background-color: white;
    border-radius: 10px;
}

.gear-image {
    max-height: 150px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.main-image {
    max-height: 50px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    background-color: black;
    border-radius: 25px;
}

.gear-seed {
    text-align: center;
    font-size: 1em;
    margin-top: 10px;
}

.gear-name {
    font-size: 1.6em;
    height: 3.2em;
    text-align: center;
    padding-top: 5px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1700px) {
    .col-xl-2 {
        flex: 0 0 auto;
        width: 12.5%;
    }
}

body {
    background-image: url(../img/bg.png);
    background-size: cover;
}

.navbar {
    font-family: "Splatfont2";
}

.card {
    border: none;
    transition: transform 0.1s linear;
    background-image: url(../img/camo-black2.png);
    background-color: navy;
    background-size: cover;
    border-radius: 25px;
    color: white;
    font-family: "Splatfont2";
    cursor: pointer;
    text-decoration: none;
}

.card:hover {
    transform: rotate(3deg);
    color: white;
}

.btn-group {
    font-family: "Splatfont2";
    margin-right: auto;
    text-align: center;
    margin-top: 15px;
    width: 75%;
    margin-left: 12.5%;
}

.btn-group button {
    border: 1px solid black;
    background-color: rgb(207, 0, 207);
    color: white;
    font-size: 2rem;
}

.btn-group button:hover {
    background-color: rgb(255, 120, 255);
}

.btn-group button.active {
    background-color: purple;
}

.btn-group button.active:hover {
    background-color: rgb(165, 0, 165);
}

@media (max-width: 600px) {
    .btn-group button {
        font-size: 1rem;
    }
}