html,
body {
    margin: 0;
    padding: 0;

    width: 300px;
    height: 250px;
}

#click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 250px;
    overflow: hidden;
}

.bg {
    position: absolute;
    width: 100%;
    bottom: 0%;
}

.divbg {
    position: absolute;
    width: 27.5%;
    height: 100%;
    bottom: 0%;
    left: 6%;
    overflow: hidden;
    border-right: 1px transparent solid;
    border-left: 1px transparent solid;
    transition: 1.2s linear;
}
.divbg_active {
    border-right: 1px white solid;
    border-left: 1px white solid;
}
.bg1 {
    position: absolute;
    width: 300px;
    bottom: 0;
    left: -21%;
    transform: translate(0%,0%);
    transition: 1s linear;
}
.bg1_active {
    transform: translate(0%, -36%);
}

.p {
    position: absolute;
    width: 110%;
    bottom: 0%;
    left: -3%;
    transform: translateY(100%);
    transition: 1s linear;
}

.p_active {
    transform: translateY(0%);
}

.t1 {
      position: absolute;
    width: 53%;
   top: 23.3%;
    left: 39%;
    transform: translateY(15px);
    opacity: 0;
}
.t2 {
    position: absolute;
    width: 45%;
    top: 42.7%;
    left: 49%;
    transform: translateY(-5px);
    opacity: 0;
    visibility: hidden;
}
.t_active {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.7s;
}
.btn {
        position: absolute;
    width: 54%;
    top: 0%;
    right: 0;
    transform: translateY(15px);
    opacity: 0;
}
.btn_active {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.8s ease;
}

.ram {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}