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

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

.container {
    max-width: none;
}

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

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

.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;
    }
}

.card {
    border: none;
    transition: transform 0.1s linear;
    background-image: url(../img/camo-black2.png);
    background-color: maroon;
    background-size: cover;
    border-radius: 25px;
    color: white;
    font-family: "Splatfont2";
    cursor: pointer;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

.card * {
    color: white;
}

table * {
    font-size: 2rem;
}

.h1-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

tr.gold td {
    background-color: goldenrod
}

tr.silver td {
    background-color: silver
}

tr.bronze td {
    background-color: #cd7f32
}

.gacha-top {
    width: 75px;
    height: auto;
    position: absolute;
    top: 0;
    z-index: 1;
}

.gacha-bottom {
    width: 75px;
    height: auto;
    position: absolute;
    top: calc((85 / 420) * 75px);
    z-index: 0;
}

.gacha-img {
    display: block;
    width: 100%;
    height: 100%;
}

.gacha-img div {
    position: relative;
    width: 100%;
    height: 100%;
}

.gacha-img .container {
    height: 75px;
    width: 100px;
}

@media (max-width: 600px) {
    table * {
        font-size: 1rem;
    }
    .gacha-top {
        width: 50px;
        height: auto;
    }
    .gacha-bottom {
        width: 50px;
        height: auto;
        top: calc((85 / 420) * 50px);
    }
    .gacha-img .container {
        height: 50px;
        width: 75px;
    }
    .h1-title {
        font-size: 2rem;
    }
}