main{
    height: 100svh !important;
    overflow: auto;
    background: white !important;
    max-width: 100% !important;
}

.single-content{
    padding-top: 20px;
    padding-bottom: 20px;
}

.text-pink{
    color: var(--pink);
}

.text-blue{
    color: var(--blue);
}

.mock-up{
    width: 600px;
    transform: scale(0.1);
    opacity: 0;
}

.btn-single{
    display: inline-block;
    padding: 10px 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--pink);
    color: white;
    text-transform: uppercase;
    border-radius: 7px;
    margin-top: 10px;
    animation: pulseSubs 1s infinite;
    border: none;
}

@keyframes pulseSubs {
    0% {
        box-shadow: 0px 0px 10px 0px rgba(175, 118, 164, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0px 0px 10px 0px rgba(175, 118, 164, 0.6);
        transform: scale(0.9);
    }
    100% {
        box-shadow: 0px 0px 10px 0px rgba(175, 118, 164, 0.8);
        transform: scale(1);
    }
}

.list{
    position: relative;
    left: -100px;
    opacity: 0;
}

@media screen and (max-width: 769px) {
    .mock-up{
        width: 100%;
    }
}