.box-home {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 9px 4px rgb(0 0 0 / 22%);
}

/*TRIANGOLO IN ALTO A DESTRA DEL BOX*/
.box-home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top: 50px solid #8c52ff;
    border-left: 50px solid transparent;
}

.box-home p {
    font-size: 20px;
}

.box-home h1 {
    color: #8c52ff;
}

@media (max-width: 768px) {
    .box-home {
        padding: 20px;
    }
}