section.find-out{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 8.75rem;
    padding:4.5rem  1.5rem 4.5rem   1.5rem;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    background-image: url("../Assets/Backgrounds/findOutBackgroundMobile.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position-x: 50vw;
    background-position-y: 50%;

    h1{
        font-weight: 300;
        font-size: 2.5rem;
        color: white;
        font-family: var(--font-title);
        letter-spacing: -0.56px;
        text-align: center;
        line-height: 2.5rem;
        @media(min-width:600px){
            text-align: start;
            width: 50%;
        }
    }
    a{
        position: relative;
        text-align: center;
        font-family: var(--font-text);
        margin-top: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        outline: 1.5px solid white;
        text-decoration: none;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        font-size: 13px;
        transition: all 0.1s linear;
        z-index: 3000;
        &:hover, &:focus{
            background-color: white;
            color: var(--darker);
        }
    }

    /* Desktop */
    @media(min-width:600px){
        background-image: none;
        flex-direction: row;
        justify-content: space-between;
        padding-left: 5rem;
        padding-right: 5rem;
        margin-left: 10%;
        margin-right: 10%;
        

        &::after{
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("../Assets/Backgrounds/findOutBackgroundDesktop.png");
            background-size: auto;
            background-attachment: fixed;
            background-position-x: 60vw;
            background-repeat: no-repeat;
        }
    }
}