/*-----------------------------------------------------------*/
/*  Livecam-row (override)
/*-----------------------------------------------------------*/
:root {
    --font-text: 'ff-meta-serif-web-pro', serif;
  
    --white: #fff;

    --ci-color: #fff;
    --ci-dialog: #fff;
    --ci-background: #1E1E1E;

    --ci-button-p: #600875;
    --ci-button-s: #E227AD;
    --ci-button-p-h: #440654;
    --ci-button-s-h: #c103ab;
}
/*-----------------------------------------------------------*/
/*  Global
/*-----------------------------------------------------------*/
body {
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
    background-color: var(--ci-background) !important; 
}
/*-----------------------------------------------------------*/
/*  Landingpage
/*-----------------------------------------------------------*/
.dialog-box {
    font-family: var(--font-text);
    position: relative;
    width: 40%;
    height: auto;
    margin-top: 25vh;
    margin-left: 15vh;
    background-color: var(--ci-dialog) !important;
    border-radius: 15px;
}
.box-text {
    text-align: center;
    font-size: 3.7rem;
}
.button-text {
    color: var(--ci-color) !important;
    position: relative;
    background-image: linear-gradient(20deg, var(--ci-button-p) 60%, var(--ci-button-s) 60%);
    padding-bottom: 2vh;
    border: none;
    border-radius: 15px;
    padding: 0vh 4vh;
    margin-bottom: 2vh;
    z-index: 1;
}
.button-text::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(20deg, var(--ci-button-p-h) 60%, var(--ci-button-s-h) 60%);
    z-index: -1;
    transition: opacity 0.1s linear;
    opacity: 0;
    border-radius: 15px;
}
.button-text:hover::before {
    opacity: 1;
}
#dialog-1 {
    z-index: 20;
}
#dialog-2 {
    z-index: 19;
    display: none;
}
#dialog-3 {
    z-index: 18;
    display: none;
}
.dialog-box .box-text {
    font-size: 3rem;
}
/*-----------------------------------------------------------*/
/*  Media Querys
/*-----------------------------------------------------------*/
@media (max-width: 1200px) {
    body {
        background-size: 150%;
    }
    .dialog-box .box-text {
        font-size: 2.5rem;
    }
}
@media (max-width: 992px) {
    .box-text  {
        margin-bottom: 0.8rem;
    }
    .dialog-box .box-text {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .box-text  {
        font-size: 2rem;
    }
    .dialog-box .box-text  {
        font-size: 1.5rem;
    }
}
@media (max-width: 575px) {
    .box-text  {
        margin-bottom: 0.5rem;
    }
    .dialog-box .box-text  {
        font-size: 2rem;
    }
}