:root {
    --white: #f1ece8;
    --black: #060609;
    --darkblue: #0e1935;
}
body.bg {
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0), rgb(0, 0, 0, 0.8)),
        linear-gradient(to left, rgba(255, 0, 0, 0), rgb(0, 0, 0, 0.95)),
        linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0), rgba(49, 77, 124, 0.5)),
        url(-assets/indexbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#title {
    font-family:
        Lumios Marker,
        serif;
    font-size: 12.3vw;
    line-height: 0;
    color: var(--white);
    text-shadow: -10px 5px 10px #060609;
}
#welcome {
    font-size: 2vw;
    font-family: BricolageGrotesque, sans-serif;
    color: var(--white);
    text-shadow: -2px 1px 2px #060609;
    opacity: 0.9;
}
.bodytext {
    font-family: BricolageGrotesque, sans-serif;
    font-style: normal;
}
.button {
    font-family: BricolageGrotesque, sans-serif;
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    transition: 0.7s;
    border: dashed var(--white);
}
.button:hover {
    text-shadow: 2px 2px 7px rgba(255, 255, 255, 0.86);
}
.homebtn {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)), url("-assets/homebuttonbg3.png");
    order: 1;
}
.tcgbtn {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)), url("-assets/homebuttonbg2.png");
    order: 2;
}
.socialsbtn {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)), url("-assets/homebuttonbg1.png");
    order: 3;
}

/* ---ANIMATIONS--- */
.float {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 1.5vh);
    }
    100% {
        transform: translate(0, -0px);
    }
}

.pop {
    text-align: center;
    -webkit-animation: pop 1s ease-in-out infinite alternate;
    -moz-animation: pop 1s ease-in-out infinite alternate;
    animation: pop 1s ease-in-out infinite alternate;
    animation-duration: 3s;
}
@keyframes pop {
    from {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.2);
    }
    to {
        transform: scale(0.95);
    }
}
@-webkit-keyframes pop {
    from {
        -webkit-transform: scale(0.95);
    }
    50% {
        -webkit-transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(0.95);
    }
}
