html {
    height: 100%;
}

body {
    margin: 0px;

    /*animation: animateBg 12s linear infinite;*/
    background-image: linear-gradient(90deg,#00B0FF, #007bb3, #007bb3);
    background-size: 200% 100%;
}

:root{
    font-size: 24px;
}

@media (min-width: 400px) {
    :root{
        font-size: 22px;
        color:red !important;
    }
}

@media (min-width: 576px) {
    :root{
        font-size: 20px;
        color:blue !important;
    }
}

@media (min-width: 768px) {
    :root{
        font-size: 18px;
        
        color:green !important;
    }
}
@media (min-width: 992px) {
    :root{
        font-size: 18px;
        color:yellow !important;
    }
}
@media (min-width: 1200px) {
    :root{
        font-size: 18px;
        color:purple !important;
    }
}
@media (min-width: 1400px) {
    :root{
        font-size: 18px;
    }
}


.bg-dark-effect {
    background: radial-gradient(ellipse at center,#585857 0,#232322 80%);
}

@keyframes animateBg {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

@font-face {
    font-family: RajdhaniLight;
    src: url(../font/Rajdhani-Light.woff2) format("woff2"),
    url(../font/Rajdhani-Light.woff) format("woff"),
    url(../font/Rajdhani-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: RajdhaniRegular;
    src: url(../font/Rajdhani-Regular.woff2) format("woff2"),
    url(../font/Rajdhani-Regular.woff) format("woff"),
    url(../font/Rajdhani-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: RajdhaniMedium;
    src: url(../font/Rajdhani-Medium.woff2) format("woff2"),
    url(../font/Rajdhani-Medium.woff) format("woff"),
    url(../font/Rajdhani-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: RajdhaniSemiBold;
    src: url(../font/Rajdhani-SemiBold.woff2) format("woff2"),
    url(../font/Rajdhani-SemiBold.woff) format("woff"),
    url(../font/Rajdhani-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: RajdhaniBold;
    src: url(../font/Rajdhani-Bold.woff2) format("woff2"),
    url(../font/Rajdhani-Bold.woff) format("woff"),
    url(../font/Rajdhani-Bold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.header h1, .header p {
    color: white;
}


h1, h2, h3, h4, p, a, ul, li {
    font-family: RajdhaniMedium;
    /*color: white;*/
}

h1, h2, h3, h4 {
    font-family: RajdhaniBold;    
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

.h100vh {
    height: 100vh;
}
.h80vh {
    height: 80vh;
}

.w100vw {
    width: 100%;
}

.margin-0 {
    margin: 0px;
}

.text-center {
    text-align: center;
}

.badge-extendend {
    transform: translateY(-20px);
    background-color: white;
    color: #00B0FF;
    padding: 0.1em 0.2em;
    font-size: 0.5em;
}

.linklist_black a {
    color: black !important;
    text-decoration: none !important;
}

footer {
    width: 100%;
    background-color: white;
}