body {
    background-color: #ffffff;
    font-family: "Nunito", sans-serif;
   
}

.bg-box{
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;

    background-color: #FBF5FF;
    width: 60%;        
    height: 500px;           
    border-radius: 8px;

    margin: 100px auto;     

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: visible;  
    
}

.bg-box h1{
    white-space: nowrap;     
    transform: scale(1.5);
    font-weight: 900;
    color: #372743;
}

.bg-box h1 .stroke-style{
    color: transparent;                 
    -webkit-text-stroke: 3px #9576A9; 
}


.copyright {
    position: fixed;      
    left: 20px;         
    top: 30%;
    
}

.copyright p {
    writing-mode: sideways-lr;  
    margin: 0;
    color: #64596C;
     
}

.copyright p::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    transform: translateX(-50%);
    width: 1px;
    height: 120px;
    background: #d9d9d9;
}