/**WELCOME SCREEN START**/
#welcome-screen {
    background: url('../img/Vector-welcome.svg');
    background-repeat: no-repeat;
    display: flex;

    img {
        display: block;
        margin:auto;
        width: 100%;
        height:100%;
        min-width: 350px;
        max-width: 550px;
    }
}

/**WELCOME SCREEN END**/
/**WELCOME CARDS END**/

#welcome-cards {
    .col {
        margin-top: 40px;
    }

}

/**WELCOME CARDS END**/
/**WELCOME DD START**/

#welcome-design-development {
    margin-top: 20px;

    img {
        width: 100%;
        max-width: 100%;
    }

    .content {
        background-color: var(--primary-color-gray-light);
    }

    .container {
        img {
            min-width: 250px;
        }

        .row {
            align-items: center;
        }
        a {
            display: block;
            text-align: center;
            text-decoration: none;
            margin-top: 20px;
            border: none;
            box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
            border-radius: 4px;
            color: white;
            width: 100%;
            background: linear-gradient(var(--primary-color-gold-dark), var(--primary-color-gold-light));
            padding: 7px;

            &:hover {
                background: white;
                color: var(--primary-color-gold-text);
            }
        }


    }
}


/**WELCOME DD END**/
/**WELCOME GAME START**/

#welcome-game-development {
    margin-top: 20px;

    img {
        width: 100%;
        max-width: 100%;
    }

    .container {
        img {
            min-width: 250px;
        }

        .row {
            align-items: center;
        }
        a {
            display: block;
            text-align: center;
            text-decoration: none;
            margin-top: 20px;
            border: none;
            box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
            border-radius: 4px;
            color: white;
            width: 100%;
            background: linear-gradient(var(--primary-color-gold-dark), var(--primary-color-gold-light));
            padding: 7px;

            &:hover {
                background: white;
                color: var(--primary-color-gold-text);
            }
        }

        .flatcard {
            background-color: white;
            max-width: 290px;
            min-width: 290px;
            width: 90%;
            border: none;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            border-radius: 4px;
            margin-top: 5px;
            margin-inline: auto;
            height: 50px;
            justify-content: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;

            h2 {
                font-family: 'ABeeZee';
                font-size: 20px;
                margin-bottom: 0;
                margin-left: 12px;
                vertical-align: center;
            }

            i {
                font-size: 25px;
                margin-left: 12px;
                color: var(--primary-color-gold-text);
            }

            &:hover {
                background: linear-gradient(-45deg, var(--primary-color-gold-light), var(--primary-color-gold-dark));
                color: white;
                cursor: pointer;
                margin-top: 0;
                margin-bottom: 5px;

                i {
                    color: white;
                }
            }
        }
    }
}



/**canvas {
    display: block;
    vertical-align: bottom;
}**/
/* ---- tsparticles container ---- */
/**#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}**/
#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;

    canvas {
        position: absolute !important;
    }
}

/**WELCOME REFS START**/

#welcome-references {
    background: var(--primary-color-gray-light);
    padding-bottom: 40px;

    h1 {
        font-size: 88px;
        line-height: 90px;
        font-family: 'ABeeZee';
        color: var(--primary-color-gold-text);
        text-align: center;
        margin-bottom: 0px;
        text-shadow: 4px 4px 10px var(--primary-color-gold-text) ;
    }
    p {
        font-size: 24px;
        text-align: center;
        font-family: 'ABeeZee';
    }
}

@media (max-width: 775px) {
    #welcome-screen {
        .row {
            flex-direction: column-reverse;
        }
    }

}