@font-face { font-family: text; src: url("/_master/Gabarito.ttf"); }
:root {
    /* Colors */
    --pink_light: rgb(255, 93, 228);
    --pink: rgb(218, 11, 166);
    --pink_dark: rgb(119, 5, 100);
    --red_light: rgb(255, 59, 59);
    --red: rgb(238, 12, 12);
    --red_dark: rgb(177, 0, 0);
    --orange_light: rgb(255, 148, 16);
    --orange: rgb(255, 117, 16);
    --orange_dark: rgb(221, 66, 0);
    --blue_light: rgb(3, 190, 190);
    --blue: rgb(23, 125, 221);
    --blue_dark: rgb(11, 23, 92);
    --green_light: rgb(34, 221, 81);
    --green: rgb(30, 180, 16);
    --green_dark: rgb(0, 119, 20);
    --gray_light: rgb(97, 97, 97);
    --gray_dark: rgb(61, 61, 61);

    /*Color Gradients#*/
    --g_pink_light: linear-gradient(to right, var(--pink_light), var(--pink));
    --g_pink_dark: linear-gradient(to right, var(--pink), var(--pink_dark));
    --g_red_light: linear-gradient(to right, var(--red_light), var(--red));
    --g_red_dark: linear-gradient(to right, var(--red), var(--red_dark));
    --g_orange_light: linear-gradient(to right, var(--orange_light), var(--orange));
    --g_orange_dark: linear-gradient(to right, var(--orange), var(--orange_dark));
    --g_blue_light: linear-gradient(to right, var(--blue_light), var(--blue));
    --g_blue_dark: linear-gradient(to right, var(--blue), var(--blue_dark));
    --g_green_light: linear-gradient(to right, var(--green_light), var(--green));
    --g_green_dark: linear-gradient(to right, var(--green), var(--green_dark));
    --g_gray: linear-gradient(to right, var(--gray_light), var(--gray_dark));
}
.light_pink_text {
    background-image: var(--g_pink_light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark_pink_text {
    background-image: var(--g_pink_dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light_red_text {
    background-image: var(--g_red_light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark_red_text {
    background-image: var(--g_red_dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light_orange_text {
    background-image: var(--g_orange_light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark_orange_text {
    background-image: var(--g_orange_dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light_blue_text {
    background-image: var(--g_blue_light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark_blue_text {
    background-image: var(--g_blue_dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light_green_text {
    background-image: var(--g_green_light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark_green_text {
    background-image: var(--g_green_dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.white_text {
    color: #fff;
}

.light_pink_container {
    background-image: var(--g_pink_light);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dark_pink_container {
    background-image: var(--g_pink_dark);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.light_red_container {
    background-image: var(--g_red_light);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dark_red_container {
    background-image: var(--g_red_dark);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.light_orange_container {
    background-image: var(--g_orange_light);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dark_orange_container {
    background-image: var(--g_orange_dark);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.light_blue_container {
    background-image: var(--g_blue_light);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dark_blue_container {
    background-image: var(--g_blue_dark);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.light_green_container {
    background-image: var(--g_green_light);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dark_green_container {
    background-image: var(--g_green_dark);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.gray_container {
    background-image: var(--g_gray);
    padding: 13px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.white_container {
    color: #fff;
}


body {
    background-color: #111;
    font-family: text, Arial, sans-serif;
    cursor: url("/_master/cursor.png"), auto;
    line-height: 1.3;
}
.background {
    /*background-image: url("/_master/background.jpg");*/
    position: fixed;
    left: 0%;
    top: 0%;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    z-index: -999;
    /*filter: blur(10px);*/
}
.backgroundHS {
    background-image: url("/_master/backgroundHS.jpg");
    position: fixed;
    left: -10%;
    top: -10%;
    min-width: 120%;
    min-height: 120%;
    background-size: cover;
    z-index: -999;
    filter: blur(10px);
}

.hugeTitle {
    font-family: text, Arial, sans-serif;
    font-size: 130px;
    font-weight: 700;
    letter-spacing: 1vw;
    color: #fff;
    mix-blend-mode: overlay;
    width: 100%;
    height: 15%;
    padding-top: 15%;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}

.page {
    z-index: -998;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 60px;
    width: auto;
    max-width: 900px;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.pageTitle {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    font-family: text, Arial, sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-align: center;
}
  

h1 {
    font-size: 36px;
    font-weight: 600;
    font-family: text, Arial, sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
h2 {
    font-size: 26px;
    font-weight: 500;
    font-family: text, Arial, sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
h3 {
    font-size: 24px;
    font-weight: 500;
    font-family: text, Arial, sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
p {
    font-size: 16px;
    font-weight: 300;
    font-family: text, Arial, sans-serif;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
.zitat {
    font-size: 16px;
    font-weight: 200;
    font-family: text, Arial, sans-serif;
    font-style: italic;
    color: #ebebeb;
}
a {
    font-size: 18px;
    font-weight: 500;
    font-family: text, Arial, sans-serif;
    color: #ebebeb;
    font-style: normal;
    text-decoration: underline;
    transition: 300ms;
}
a:hover {
    cursor: url("/_master/cursorHover.png"), auto;
    filter: brightness(0.5);
}

.customButton {
    font-size: 24px;
    font-weight: 500;
    font-family: text, Arial, sans-serif;
    color: #fff;
    border: none;
    transition: 1s;
}
.customButton:hover {
    cursor: url("/_master/cursorHover.png"), auto;
    font-size: 32px;
}


.flexContainer {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
}
.flexContainerItem {
    width: 254px;
    height: 300px;
}

.centered {
    /*width: 100%;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: center;
}