.item0 { 
    grid-area: logo; 
    align-items: center;
    width: 150px;
    height: 125px;
    background: url(../images/background/logo01.png) no-repeat center center;
/*    background: url(../images/background/logo02.png) no-repeat center center;*/
/*    background: url(../images/background/logo03.png) no-repeat center center;*/
/*    background: url(../images/background/logo04.png) no-repeat center center;*/
    background-size: 90%;
}

.item1 {
  /* Hintergrundbild das den Text füllen soll */
  background: url(../images/background/Fire-texture-seamless.jpg) no-repeat center center;
/* -webkit-background-clip clips the background of the element to the text */
    -webkit-text-fill-color: transparent; /* überschreibt weißen Test mit Bild */
    -webkit-background-clip: text;

  /* general styles */
    background-size: 100% auto;
    color: #fff;
    text-align: center;
    font-size: calc(40px + (100 - 40) * ((100vw - 320px) / (1600 - 320)));

    display: table;
    height: 100%;
    width: 100%;
}
.item1 span{
    display: table-cell;
    vertical-align: middle;
    
    
}
.item2 { 
    grid-area: menu;
    height: 560px;
}
.item3 { 
    grid-area: main;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 35px !important;
    
}
.item3.border{
    background-image: url(../images/background/rose-corner-bottomleft.png),url(../images/background/rose-corner-bottomright.png),url(../images/background/rose-corner-topleft.png),url(../images/background/rose-corner-topright.png),url(../images/background/rose-border-bottom.png), url(../images/background/rose-border-left.png), url(../images/background/rose-border-right.png), url(../images/background/rose-border-top.png);                                    
    border-image-repeat: no-repeat,no-repeat,no-repeat,no-repeat,repeat,repeat,repeat, repeat;
    background-position: bottom left, bottom right, top left, top right,bottom,left,right,top;
    background-repeat: no-repeat,no-repeat,no-repeat,no-repeat, repeat-x,repeat-y,repeat-y,repeat-x;  

}


.item3.border img{
    transition: transform 0.5s;
}
.item3.border img:hover{
    transform: scale(2.5,2.5);   
}


.item4 { 
    grid-area: footer; 
    background: url(../images/background/footer-teufel.png) repeat-x;
    width: 100%; 
    height: 100%;
    animation: flydevils 12s linear infinite;
}

@keyframes flydevils {
	from { background-position: 0px 0px }
	to { background-position: -108px 0px }
}

.grid-container {
    display: grid;
    grid-template-areas:
        'logo header'
        'menu main'
        'footer footer';
    grid-gap: 15px;
    color: white;
    padding: 5px;
    grid-template-columns: 150px auto; /*breite Menu Main*/
    grid-template-rows: auto auto 75px; /*höhe Header Menu/Main footer*/
}

.grid-container > div {
/*    text-align: center;*/
    padding: 15px 5px; /*abstand oben/unten und links/Rechts jeder Container*/    
}

.button {
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid white;
    border-radius: 75%;
    color: white;
    padding: 15px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    cursor: pointer;
    width: 140px;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.button.active{
    display: inline-block;
    border-radius: 10%;
    opacity: 1;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

body{
    background-image: url(../images/background/stars-background.gif);
    margin: 0px;
    min-width: 500px;
    
}
















