/* Here is the roots */

:root {
    --gradient1: #0B0921;
    --gradient2: #120C2F;
    --container: #030712;
    --text: #F9FAFB;
    --secondary-text: #B0BAC5;
    --button: #FE22F8;
    --xtra-color: #8c52ff;
    --warning: #ea3f3f;
}

/* Here is the real deal */

body {
    background-image: linear-gradient(to right, var(--gradient1), var(--gradient2));
    min-height: 1000px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.iSite {
    position: fixed;
    width: 88.93px;
    height: 50px;
    top: 20px;
    left: 30px;
    color: var(--text);
    font-size: 40px;
    background-color: transparent;
    border: 0px solid transparent;
    z-index: 100;
}

.coming-soon {
    color: var(--text);
    font-size: 700%;
    font-family: "Lexend", sans-serif;
}

#flex-div {
    top: 0px;
    bottom: 50px;
    position: relative;
    margin: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;


}

.container {
    background-color: var(--container);
    width: 80%;
    height: 500px;
    border-radius: 27px;
    border: 0px solid transparent;

    margin: 80px;
    transition: all ease-in-out .15s;  

    text-wrap: wrap;
    position: relative;
    align-self: center;
    justify-self: center;

    align-items: start;

    left: 50%;
    transform: translateX(-50%)
}
.title {
    color: var(--text);
}

.sneak-peaks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bilder {
    margin: 1%;
    flex-shrink: inherit;
    display: flex;

    border-radius: 16px;
    border: 8px solid var(--xtra-color);
}
