/*
==================================================
Components
==================================================
*/

/* ==========================================
   Buttons
========================================== */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0.875rem 1.75rem;

    border: 1px solid transparent;

    border-radius: 999px;

    text-decoration: none;

    font-size: 1rem;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .2s ease;

}

.button:hover {

    transform: translateY(-2px);

}

.button--primary {

    background: #111111;

    color: #ffffff;

}

.button--primary:hover {

    background: #2d2d2d;

}

.button--secondary {

    background: transparent;

    border-color: #111111;

    color: #111111;

}

.button--secondary:hover {

    background: #111111;

    color: #ffffff;

}

/* ==========================================
   Sections
========================================== */

.section {

    padding: 6rem 0;

}

.section--hero {

    min-height: calc(100vh - 80px);

    display: flex;

    align-items: center;

    padding-top: 2rem;

    padding-bottom: 4rem;

}

@media (max-width: 768px) {

    .section {

        padding: 4rem 0;

    }

    .section--hero {

        min-height: auto;

    }

}