html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #FCEFDE;
    overflow: hidden;
  }

#all {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

}

#playby {
    background-image: url('https://media.discordapp.net/attachments/923639450486050908/1082600733985218570/Name.png?width=1063&height=493');
    background-size: contain;
    background-position: left;
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    left: 0%;
    animation: pbf 4s;
    opacity: 1;
}

@keyframes pbf {
    0% {
        opacity: 0;
    }

    100% {

    }
    
}

#bg {
  background-image: url('https://i.ibb.co/1fwbxNk/Copy-of-Formal-Research-Paper-Slideshow-by-Slidesgo-2.png');
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}

#content {
    display: table-cell;
    max-width: 100%;
    min-width: 50%;
    width: 60%;
    margin-top: 5%;
    height: 100%;
    position: absolute;
    left: 32.5%;
    top: 0%;
    opacity: 0;
    animation: descf 3s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes descf {
    0% {
        top: 100%;
        opacity: 0;
    }

    100% {
        opacity: 1;

    }
    
}

#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: 0% 0 2.5% 0;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: 50% 50%;
    width: 75vh;
}

#text {
    font-size: 1.3vw;
    color: #B2A8A8;
    font-family: 'Gideon Roman', cursive;
}

#break2 {
    position: relative;
    margin: 1.5% 20% 0 0;    
    object-fit: contain;
    object-position: 30% 30%;
    width: 80vh;
}

#snake {
    position: absolute;
    height: 45vh;
    opacity: 0.0;
    right: 35%;
    top: 19.5%;
    animation: snakef 5s ease 3s 1 normal forwards;
}

@keyframes snakef {
   0% {
        top: 30%;
    }

    100% {
        opacity: 0.075;
    }
}