body {
    transition: opacity ease-in 0.2s;
}

body[unresolved] {
    opacity: 0;
    display: block;
    overflow: hidden;
    position: relative;
}

.cta-btn {
    height: auto;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
    padding: 14px 0 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin: 20px auto 10px;
    width: 100%;
    max-width: 340px;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(150deg, #23b424, #02fd03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    display: block;
    text-align: center;
}

.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active {
    background: linear-gradient(150deg, #1b971b, #08db09);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    color: #fff;
    outline: none;
}

.cta-btn--red {
    background: linear-gradient(150deg, #eb4c42, #ca4339);
}