* {
    font-size: 25px;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: 4000;
    font-style: normal;
}

.encasing {
    margin: 10px;
    background: rgb(246, 208, 255);
    background: linear-gradient(0deg, rgba(246, 208, 255, 1) 0%, rgba(197, 255, 250, 1) 100%);
}

body {

    background-color: rgb(126, 126, 126);
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both;
}

.smallimg {
    width: 50px;
}

.border-r {
    border-right: grey 2px solid;
}

.col-4 {
    justify-content: space-evenly;
}

.back {
    border: 2px solid black;
    background-repeat: no-repeat;
    background-size: cover;
}

.alback {
    background-image: url("../img/wavy\ blue.jpg");
}

.arback {
    background-image: url("../img/neon.jpg");
}

.inback {
    background-image: url("../img/blub.webp");
}

.msback {
    background-image: url("../img/clouds.webp");
    max-width: 100%;
}

.white {
    color: white !important;
}

hr {
    background-color: rgb(0, 0, 0);
    border: 3px solid rgb(126, 126, 126);
    height: 10px;
    width: 100%;
    opacity: 1;
}

.custom-color {
    background: rgb(208, 255, 215);
    background: linear-gradient(0deg, rgba(208, 255, 215, 0.5186449579831933) 0%, rgba(255, 213, 167, 0.8575805322128851) 100%);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bigimg {
    width: 1440px;

}

.title {
    height: 160px;
    border: 3px solid rgb(181, 211, 196);
    font-weight: bolder;
    font-size: 75px;

}

.btn-light {
    border: 1px solid black;
    width: 100%;
    height: 250px;
    background-size: cover;
}

.red:hover {
    background-image: url("../img/sol-badguy.gif");
}
.red:focus {
    background-image: url("../img/solbadguyScream.gif");
}

.orange:hover {
    background-image: url("../img/may-guilty-gear.gif");
}
.orange:focus {
    background-image: url("../img/mayscream.gif");
}

.yellow:hover {
    background-image: url("../img/fausteating.gif");
}
.yellow:focus {
    background-image: url("../img/faust.gif");
}

.green:hover {
    background-image: url("../img/ky.gif");
}
.green:focus {
    background-image: url("../img/kykiskescream.gif");
}
.blue:hover {
    background-image: url("../img/potemkin-saul-goodman.gif");
}
.blue:focus {
    background-image: url("../img/potemkinscream.gif");
}

.indigo:hover {
    background-image: url("../img/zatoshadow.gif");
}
.indigo:focus {
    background-image: url("../img/zato.gif");
}

.violet:hover {
    background-image: url("../img/ggst-elphelt.gif");
}
.violet:focus {
    background-image: url("../img/elphelt-elphelt-valentine.gif");
}
.btn-light:hover {
    border: 3px black solid;
}



.nav-link {
    justify-content: center;
    display: flex;
}

.card-text {
    font-size: 18px;
    font-weight: bold;
}

.col {

    padding: 0%;
}

.rockroll {
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5186449579831933) 0%, rgba(250, 0, 0, 0.45011600928074247) 100%);
}

.calm {
    background: rgb(255, 255, 82);
    background: linear-gradient(0deg, rgba(255, 255, 82, 0.5186449579831933) 0%, rgba(74, 255, 168, 0.45011600928074247) 100%);
}

img:hover {
    border: 2px solid black;
}

.carousel-item {
    border: 1px solid white;
}

strong {
    font-size: 75px;
    font-weight: 400;
    font-style: normal;
}

strong.rock,
h5 {
    color: rgb(255, 84, 84);
}

.rock {

    font-family: "New Rocker", system-ui;
}


.soft {
    font-family: "Fuzzy Bubbles", sans-serif;
}

strong.soft {
    color: rgb(124, 255, 124);
}

.dropdown-menu {
    background: rgb(0, 146, 255);
    background: linear-gradient(0deg, rgba(0, 146, 255, 1) 0%, rgba(255, 50, 50, 1) 100%);
}

.dropdown-item:hover {
    border: 2px aliceblue solid;
    border-radius: 20px;
    background: rgb(82, 255, 114);
    background: linear-gradient(0deg, rgba(82, 255, 114, 0) 0%, rgba(106, 112, 255, 0) 100%);
}

.card-text {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
}




@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.navbar {
    position: sticky;
}

.grback {
    border: 1px solid black;
    max-width: 100%;
    background-image: url("../img/ocean.webp");
}