﻿:root {

}

/*.....................Elemente.....................*/

/*..................................................*/


/*.....................Klassen......................*/
.insertedBody {
    background-color: rgba(56, 80, 89, 1) !important;
}

.welcomeText {
    margin-top: 6em;
    padding-left: 2.5em;
    padding-right: 2.5em;
}

.card {
    position: relative;
    top: 4em;
}

/*.....Api Doku Button und Animation.....*/
.btn:link,
.btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    color: #000;
    border: 1px solid #000;
    box-shadow: 0 10px 20px rgba(56, 80, 89, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(56, 80, 89, 0.2);
}

.btn-blue {
    background-color: rgba(56, 80, 89, 1);
    color: #fff;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 0.375rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-blue::after {
    background-color: rgba(56, 80, 89, 1);
    color: rgba(56, 80, 89, 1);
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-white::after {
    background-color: #fff;
}

.btn-white:hover {
    transform: translateY(-3px);
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 10px 20px 0 white;
}

.btn-white:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px 0 white;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
/*......................................*/

/*..................................................*/


/*.....................Id's.........................*/

/*..................................................*/


/*.....................Scrollbar....................*/

/*..................................................*/


/*...................Media Querrys..................*/

/*..................................................*/
