@import "base.css";

.download-container{
    position: relative;
    color: #fff;
    font-size: 0;
}


.download-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

span.highline{
    color: #ee3c70;
}

.download-title{
    font-size: var(--font-size-module-title);
    margin-bottom: 1rem;
}

.download-desc{
    font-size: var(--font-size-desc);
    margin-bottom: 2rem;
}

.download-btn{
    display: inline-block;
    background: #6713c9;
    padding: 1.125rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-title);
}

.download-btn:hover {
    background-color: #ee3c70;
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px 10px rgba(255, 255, 255, 0.2);
}


@media (max-width: 768px) {
    /* .download-section{
        font-size: var(--font-size-title);
    } */

    .download-section{
        top: 70%;
    }

    .download-title,.download-desc{
        font-size: var(--font-size-title);
        display: none;
    }

    .download-btn{
        font-size: var(--font-size-desc);
        padding: .5rem 1rem;
    }
}

@media (min-width: 1920px) {
    .download-btn{
        font-size: 1.6rem;
        padding: 0.8rem 1rem;
    }
}