:root{
    background: #ffffff;
}

#Mail{
    height: 80%;
    width: fit-content;
    padding: 24px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    border-right: 4px solid red;
    overflow-x: scroll;

    p{
        font-size: large;
        font-weight: bold;
        margin-top: 8px;
    }
}

textarea{
    min-height: 10vh;
}

.ingredients{
    border: 0;
    border-left: 4px solid rgb(255, 0, 0);
    outline: none;
    font-size: medium;
    height: 4vh;
    width: fit-content;
    margin: 12px;
}

.amount{
    border: 0;
    border: 4px solid rgb(255, 0, 0);
    border-radius: 24px;
    outline: none;
    font-size: medium;
    height: 4vh;
    width: fit-content;
    margin: 12px;
}

.page{
    align-self: center;
    justify-self: center;
    padding: 32px;
    height: 80vh;
    width: 80vw;
}

.container{
    padding-left: 12vw;
    height: 80vh;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-self: left;
    align-items: center;
    justify-items: center;
}

.actions *{
    color: white;
    color: rgb(92, 92, 92);
    border:#1d005f;
    border-radius: 6px;
    padding: 4px;
    width: fit-content;
}

#data input{
    border: 0;
    border-left: 4px solid rgb(255, 0, 0);
    outline: none;
    font-size: x-large;
    height: 6vh;
    width: 12vw;
    margin: 24px;
}

#header{
    position: fixed;
    top: 0%;
    left: 0%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(to top, #000000, #2b0064);
    color: white;
    height: 14vh;
    width: 100vw;
    z-index: 1;
    border-bottom: 1vh solid purple;
    
    img{
        position: fixed;
        left: 0%;
        margin: 3% 0% 0% 1%;
        width: 6vw;
        z-index: 799;
        justify-self: center;
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(0,0,0,0) 50%);
    }

    h1{
        margin-bottom: 0px;
        align-self: center;
        justify-self: center;
        font-size: xx-large;

    }

    #aside{
        position: fixed;
        top: 0%;
        left: 0%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to top, #000000, #2b0064);
        border-right: 4px solid rgb(0, 100, 255);
        height: 100vh;
        width: fit-content;
        max-width: 6vw;
        padding: 0% 32px;
        display: none;

        button{
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            color: white;
            font-size: larger;
            font-weight: bolder;
            background: none;
            border: none;
            margin-top: 3vh;
        }

        button:hover{
            cursor: pointer;
        }

            #home:hover{color:#b18fff;}

            #data:hover{
                text-transform: uppercase;
                font-weight: bold;
                text-shadow:
                    0 0 2px #fff,
                    0 0 5px #0ff,
                    0 0 10px #0ff;
                animation:
                    textFlicker 3s infinite,
                    chromaShift 0.4s steps(2) infinite;
            }

            #logout:hover{    
                text-transform: uppercase;
                font-weight: bold;
                text-shadow:
                    0 0 2px #fff,
                    0 0 5px #0ff,
                    0 0 10px #0ff;
                animation:
                    textFlicker 3s infinite,
                    chromaShift 0.4s steps(2) infinite;
            }

            #impressum:hover{    
                text-transform: uppercase;
                font-weight: bold;
                text-shadow:
                    0 0 2px #fff,
                    0 0 5px #0ff,
                    0 0 10px #0ff;
                animation:
                    textFlicker 3s infinite,
                    chromaShift 0.4s steps(2) infinite;
            }
    }
}

#header:hover{
    #aside{
        display:flex;
    }
}

#infinibowl{
    margin-left: -12vw;
    color: white;
    padding-left: 16vw;
    background: linear-gradient(90deg, rgba(255, 0, 0, 1) 30%, rgba(255, 255, 255, 0) 80% );
    justify-self: center;
    align-self: center;
    align-items: center;
    justify-items: left;
    height: 12vh;
    width: 100%;
    margin-top: 14vh;
    margin-bottom: 0px;
    font-size: xx-large;
    font-weight: bolder;
}

.thebowl {
    position: fixed;
    bottom: 44%;
    right: 20%;
    height: 18vh;
    width: 24vw;
    scale: 1.4;

    p{
        font-style: italic;
        text-shadow: #000000 4px;
        color: rgb(121, 0, 0);
        width: 24vw;
        opacity: 0.4;
        display: none;
    }
}

.thebowl > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thebowl:hover{
    p{
        display: block;
        animation:
            textFlicker 3s infinite;
    }
}

h2{
    position: fixed;
    bottom: 0%;
    left: 0%;
    background: rgb(83, 83, 83);
    width: 100%;
    height: 8vh;
    margin-top: 0px;
    margin-bottom: 0px;
    align-self: center;
    justify-self: left;
    align-items: center;
    justify-items: center;
    padding: 8px 0px;
}

.avil:hover{cursor: url('images/cursor.cur'), auto;}

.static-flicker {
    text-transform: uppercase;
    font-weight: bold;
    text-shadow:
        0 0 2px #fff,
        0 0 5px #0ff,
        0 0 10px #0ff;
    animation:
        textFlicker 3s infinite,
        chromaShift 0.4s steps(2) infinite;
}

/*Glitch*/
@keyframes textFlicker {0%, 5%, 10%, 15%, 20%, 50%, 55%, 70%, 75%, 80%, 90%, 100% {opacity: 1;filter: brightness(1);}3%, 8%, 18%, 52%, 58%, 73%, 78%, 88% {opacity: 0.3;filter: brightness(2);}}
@keyframes chromaShift {0% { text-shadow: 2px 0 red, -2px 0 cyan; } 50%  { text-shadow: -2px 0 red, 2px 0 cyan; } 100% { text-shadow: 2px 0 red, -2px 0 cyan; }}