h1, h2 {
    font-family: var(--ff-header);
    font-weight: 700;

    margin: 16px;

    text-align: center;
}
h1 {
    font-size: clamp(2rem, 4vw, 4rem);
}
h2{
    font-size: clamp(1.5rem, 3vw, 3.5rem);
}

.header-emphasis{
    font-weight: 800;
    letter-spacing: 0.1rem;

    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
}
.text-emphasis{
    font-weight: 600;
    letter-spacing: 0.01rem;
}
.text-emphasis-double{
    font-weight: 800;
    letter-spacing: 0.02rem;
}
.sect-text{
    font-size: clamp(1.3rem, 4vw, 2.5rem);

    padding: 24px 32px;
    line-height: 130%;
    margin: 0 32px;
}
p {
    font-size: clamp(0.8rem, 1rem + 16vw, 2.5rem);

    margin: 8px;
    padding: 8px;
}

.cta-btn{
    border-radius: 150px;

    padding: 15px 60px;
    margin-bottom: 24px;
    
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-family: var(--ff-header);
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: var(--white-text);
    
    text-decoration: none;
    
    background: var(--accent-color);
}
.cta-btn:hover{
    transform: scale(1.04);
}