
body{
    background: #222f3e;
}
.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50vw;
    height: 70vh;
    background: rgb(111, 198, 255);
    border-radius: 5px;
    font-family: "dancing script",cursive;
    overflow: hidden;
    color: #797d7f;
    letter-spacing: 0.5px;
    display: grid;
    place-items: center;
}
.inner{
    position: absolute;
    height: 100%;
    width: 80%;
    opacity: 1;
    -webkit-transition: 1s;
    transition: 1s;
}
.box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height:70%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 1.5rem rgba(0,0,0,0.5);
    font-size: 1.3rem;
}
.number::before{
    content:"";
    position:absolute;
    top:-100px;
    right: -30px;
    width: 90px;
    height: 200px;
    background: rgb(177, 177, 237);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index:-1;
    box-shadow: 0 0 0.7rem rgba(0,0,0,0.5);
}

.number{
    font-family: var(--sans);
    position: absolute;
    margin: 0;
    top: 15px;
    right: 20px;
    color: rgba(255,255,255,0.7);
}

.number img{
    width: 40px;
    height: 40px;
    position:absolute;
    left: -25px;
    top: 7px;
    cursor: pointer;
    animation: rot 1s linear;
}

.number:hover img{
    animation: rot 1s linear;
}
@keyframes rot{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.quote{
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 80%;
    font-size: 1.3rem;
}
.author{
    position: absolute;
    top: 58%;
    left: 80%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-size: 1.3rem;
}

.start-quote{
    font-size: 3rem;
    position:absolute;
    left: 15px;
}
.button{
    position: absolute;
    cursor: pointer;
    width: 100%;
    text-align: center;
    bottom: 0px;
}
#btn1{
    background-color: rgb(84, 225, 253);
    margin: 0;
    color: black;
    padding: 0 5px;
}



