html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    background-image:url('https://i.imgur.com/Sy2atYw.png');
    overflow: hidden;
  }

#all {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

}

#corner1 {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 20vh;
}

#corner2 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 20vh;
}

#playby {
    background-image: url('https://i.imgur.com/PTpQXMn.png');
    background-size: contain;
    background-position: right;
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    right: 0%;
    animation: pbf 3s;
}

@keyframes pbf {
    0% {
        right: -10%;
        opacity: 0;
    }

    100% {

    }
    
}

#content {
    display: table-cell;
    max-width: 100%;
    min-width: 40%;
    width: 30%;
    height: 100%;
    position: absolute;
    right: 50%;
    top:0;
    animation: descf 6s;
}

@keyframes descf {
    0% {
        right: 100%;
        opacity: 0;
    }

    100% {

    }
    
}

#desc {
    height: 100%;
    width: 100%;
    position: absolute;
}

#name {
    user-zoom: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    margin: 50% 0 1.5% 0;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: 50% 50%;
    width: 75vh;
}

#text {
    font-size: 1.2vw;
    color: #19418e;
    font-family: 'Cinzel', serif;
    font-weight:bold;
    opacity:0;
    animation: tf 3s;
    animation-delay: 2s;
    animation-fill-mode:forwards;
}

@keyframes tf {
  0% {
    transform: translate(0,20%);
  }
  
  100% {
    opacity:1;
  }
}

#break1 {
    position: relative;
    margin: 1.5% 0 1.5% 0;
    object-fit: contain;
    object-position: 50% 50%;
    width: 33vh;
}

#break2 {
    position: relative;
    margin: -5.5% 0 0 0;    
    object-fit: contain;
    object-position: 50% 50%;
    width: 55vh;
}

#cross {
    opacity: 0.3;
    z-index: -3;
    position: absolute;
    top: 5%;
    width: 30%;
    left: 63%;
    opacity:0;
    animation: cf 3s;
    animation-delay: 3s;
    animation-fill-mode:forwards;
}

@keyframes cf {
  0% {
    transform: translate(0%,-30%) scale(140%);
  }
  
  100% {
    opacity:0.3;
  }
}