:root {
    --title-outline-color1: rgba(200,200,255,0.8);
    --title-text-shadow1: 1px 1px 0 var(--title-outline-color1), -1px 1px 0 var(--title-outline-color1), 1px -1px 0 var(--title-outline-color1), -1px -1px 0 var(--title-outline-color1);
    --title-outline-color2: rgba(200,255,200,0.8);
    --title-text-shadow2: 1px 1px 0 var(--title-outline-color2), -1px 1px 0 var(--title-outline-color2), 1px -1px 0 var(--title-outline-color2), -1px -1px 0 var(--title-outline-color2);
    --title-shadow: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
    --title-shadow-m: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.button-link {
    text-decoration: unset;
}

.display-desktop {
    display: block;
}

.display-mobile {
    display: none;
}

.drawer-open > dxbl-drawer-panel {
    max-width: 100%;
    min-width: 500px;
    width: 40% !important;
}

.drawer-open > .dxbl-drawer-shading {
    background-color: transparent;
}

@media (max-width: 768px) {

    .display-desktop {
        display: none;
    }

    .display-mobile {
        display: block;
    }

    .drawer-open > dxbl-drawer-panel {
        width: 100% !important;
    }
}




.welcome-container {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 15vh;
    left: 0;
    animation: fadeInAnimation ease 3s;
}

.logo-welcome {
    width: 15vw;
    height: 15vw;
    margin: 0 1vw;
    filter: var(--title-shadow);
}

.welcome-text {
    font-family: Roboto Slab;
    backdrop-filter: blur(15px) brightness(70%);
    color: white;
    padding: 0.1vw 0.3vw;
    font-size: 2.3vw;
    line-height: 2.1vw;
    width: fit-content;
    border-radius: 0.2vw;
    position: absolute;
    top: -4.5vw;
    left: 11.3vw;
}

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

.logo-container-index {
    margin: 25vh auto 0;
    align-items: center;
    opacity: 0.5;
}

.index-logo {
    height: 11vw;
    margin-right: 1vw;
}

.logo-text1 {
    font-family: Roboto Slab Light;
    font-size: 8vw;
    color: var(--primary-color);
    position: relative;
}

    .logo-text1 span {
        /*text-shadow: var(--title-text-shadow1);*/
        filter: var(--title-shadow);
    }

.logo-text2 {
    font-family: Roboto Slab;
    font-size: 8vw;
    color: var(--accent-color);
    /*text-shadow: var(--title-text-shadow2);*/
    filter: var(--title-shadow);
}

@media(max-width: 768px) {
    .logo-welcome {
        width: 18vw;
        height: 18vw;
        margin: 0vw 1vw;
    }

    .welcome-text {
        font-size: 3vw;
        line-height: 3vw;
        padding: 0.5vw 0.5vw;
        top: -4.5vw;
        left: 14vw;
    }

    .logo-text1 span, .logo-text2 {
        font-size: 10vw;
        filter: var(--title-shadow-m);
    }
}

.start-lang-container {
    bottom: 20px;
    position: fixed;
    right: 10px;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Apply the animation with a delay */
.fade-in-delayed {
    opacity: 0; /* Ensure the element is initially hidden */
    animation: fadeIn 1s ease-in 1s forwards; /* 1s duration, 1s delay */
}

.my-projects-btn {
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    padding: 10px 20px;
}

.instance-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
}

    .instance-info img {
        max-width: 240px;
        max-height: 80px;
    }

.instance-name {
    color: var(--accent-color);
    font-weight: 100;
}

@media (max-width: 768px) {
    .instance-info {
        bottom: 10px;
        left: 10px;
        right: unset;
    }

        .instance-info img {
            max-width: 180px;
            max-height: 50px;
        }
}




