/* body{
    background-image: url("Assets/TheRoom.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.sectionLeft{
    display: flex;
    width: 640px;
}

.sectionMiddle{
    width: 640px;
}

.sectionRight{
    padding: 10px;
    width: 620px;
}

.isaac{
    position: absolute;
    bottom: 290px;
    right: 990px;

}

.fly{
    position: absolute;
    left: 300px;
    bottom: 500px;
    width: 350px;
}

.deathnote{  
    position: absolute;
    width: 500px;
}

.gridContainer{
  display: grid;
  grid-template-columns: auto auto auto;
}

button{ 
    background: transparent;
    border: none;
}

.banner .flex{
    position: absolute;
    top: -1px;
    left: -1px;
    height: 100%;
    width: 100%;
    transition: 0.15s;
}

.banner:hover{
    width: 102%;
} */
button{
    background: none;
    border: none;
}

 .gridContainer{
    display: grid;
    grid-template: 
    'z z z'
    'x c v';
}


body{
    background-image: url(Assets/TheRoom.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner{
    display: grid;
    justify-content: center;
    grid-area: z;
}


.sectionLeft{
    grid-area: x;
}

.sectionMiddle{
    grid-area: c;
}

.sectionRight{
    grid-area: v;
}

.sectionLeft > img{
    position: relative;
    top: 30%;
    left: 30%;
}

.sectionMiddle > button{
    position: relative;
    top: 50%;
    left: 25%;

}

.sectionRight > img{
    position: relative; 
    width: 100%;
}


