@media only screen and (min-width: 768px) {
    body {
        font-family: main__site__font;
        font-size: 18px;
        background-image: url("public/img/main-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        /* background-color: #c32881; */
        min-height: 100vh;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-family: main__site__font;
        font-size: 18px;
        background: #0d4936;
        min-height: 100vh;
    }
}

.img__border {
    box-shadow: 0 4px 8px 0 #000000cc, 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 22px;
}

.card__border {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 10px;
    /* background-image: radial-gradient(circle, rgb(39, 39, 39) 0px, rgb(6, 6, 6) 70%)!important; */
    background-image: linear-gradient(25deg,rgba(0,89,54,1) 0%,rgba(0,192,130,1) 90%) !important;
    /* background-image: -webkit-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%); */
}

.card__border__spin {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 10px;
    /* background-image: linear-gradient(to bottom,#25004b 0%,#370958 20%,#36125f 80%,#25004b 100%)!important; */
    background: #838383 !important;
}

.card__title {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 10px;
    background: radial-gradient(ellipse farthest-corner at right bottom,#FEDB37 0%,#FDB931 8%,#9f7928 30%,#8A6E2F 40%,transparent 80%),radial-gradient(ellipse farthest-corner at left top,#FFFFFF 0%,#FFFFAC 8%,#D1B464 25%,#5d4a1f 62.5%,#5d4a1f 100%)!important;
}

.btn__topage2 {
    width: 145px;
    display: inline-block;
    padding: 10px 25px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-image: linear-gradient(0deg,#ff9c19 40%,#ffdd2d 110%);
    border: none;
    border-radius: 30px;
    box-shadow: -1.828px -1.828px 6px 0 rgb(255 200 39 / 40%), 3px 5px 8px 0 rgb(255 82 1 / 20%);
}

.btn__topage2:hover {
    background: #00b430;
    box-shadow: -1.828px -1.828px 6px 0 #00b43026, 3px 5px 8px 0 #00b43026;
}

.btn__topageindex {
    width: 145px;
    display: inline-block;
    padding: 10px 25px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #1f94e2;
    border: none;
    border-radius: 30px;
    box-shadow: -1.828px -1.828px 6px 0 #1f94e256, 3px 5px 8px 0 #1f94e256;
}

.btn__topageindex:hover {
    background-color: #606060;
    box-shadow: -1.828px -1.828px 6px 0 #60606077, 3px 5px 8px 0 #60606077;
}

.range {
    width: 200px;
    height: 15px;
    -webkit-appearance: none;
    background: #111;
    outline: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00fd0a;
    cursor: pointer;
    border: 4px solid #333;
    box-shadow: -407px 0 0 400px #00fd0a;
}