body{
    background-color: #dceaea;
}
main{
    display: grid;
    grid-template-columns: 58vw auto;       /*40vw auto;*/
    grid-template-rows: auto auto;
    grid-template-areas: "intro fridge";     /*"intro fridge " "intro mybutton "*/
    position: relative;
    top: 3vw;
}
#fridge{
    grid-area: fridge;
}
#intro{
    grid-area: intro;
    position: relative;
    left: 7vw;          /*delete when positon fridge change with intro*/
    top: 1vw;
}
h1{
    font-size: 3vw;
    font-family: "Ink Free";
}
#storyline{
    position: relative;
    left: 1vw;
    font-size: 1.6vw;
    width: 52vw;        /*hier ändern um text weiter nach rechts laufen zu lassen*/
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Calibri Light";
    white-space: pre-line;
    line-height: 1.4;           /* wie weit die Zeilen außeinander sind*/
}
#doMagicButton {
    position: absolute;
    height: 2.5vw;
    width: 12vw;
    top: 23vw;
    left: 43.5vw;
    appearance: none;
    border: 0;
    background-color: #475c67;
    font-size: 1.4vw;
    font-family: "Calibri";
    text-align: center;
    color: white;           /*text color*/
    border-radius: 0.6vw;

}

#doMagicButton::after {
    content: "";
    position: absolute;
    left: -0.3vw;
    top: -0.3vw;
    width: 106%;
    height: 125%;
    padding: 0;
    border-radius: 0.9vw;;
    background-image: conic-gradient(#488cfb, #29dbbc, #ddf505, #ff9f0e, #e440bb, #655adc, #488cfb);
    z-index: -1;
    animation: hue 600ms infinite;
    animation-play-state: running;
}

@keyframes hue {
    to {
        filter: hue-rotate(1turn);
    }
}
