/**
Axioms color palette:
 */

#axioms {
    /* CSS HEX */
    --alabaster: #ede9dfff;
    --van-dyke: #482e2aff;
    --seal-brown: #6d351eff;
    --dark-green: #162a1fff;
    --dark-green-2: #0b1c0bff;

    /* CSS HSL */
    --alabaster: hsla(43, 28%, 90%, 1);
    --van-dyke: hsla(8, 26%, 22%, 1);
    --seal-brown: hsla(17, 57%, 27%, 1);
    --dark-green: hsla(147, 31%, 13%, 1);
    --dark-green-2: hsla(120, 44%, 8%, 1);
}


#axioms {
    backdrop-filter: blur(10px);
    background: url("../img/cover_2.jpg") no-repeat;
    background-size: contain;
    background-color: rgba(0, 0, 0, 0.42);
    background-position: center center;
    background-blend-mode: darken;
    width: 100%;
    aspect-ratio: 1/1;

    border-bottom: 6px solid black;
    

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--alabaster);
    font-size: 6rem;
}

@media screen and (max-width: 920px) {
    #axioms {
        font-size: 4.5rem;
    }
}

@media screen and (max-width: 640px) {
    #axioms {
        font-size: 3.2rem;
    }
}


#axioms header {
    text-shadow: 2px 2px 2px black;
    font-family: 'CabinetGrotesk-Light', arial, sans-serif;
}


#axioms p {
    font-size: 0.75em;
    text-align: center;
}

#axioms .overline {
    text-decoration: overline;
}

#axioms p, header, a {
    z-index: 999;
}



#axioms .cta-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

@media screen and (max-width: 920px) {
    #axioms .cta-container .cta{
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 640px) {
    #axioms .cta-container .cta{
        font-size: 1.6rem;
    }
}

#axioms .blur {
    backdrop-filter: blur(0.5px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}