h1, h2, h3, h4, ul, ol, p, a, cite {
    font-family: 'Averia Serif Libre', serif;
    margin: 0;
    padding: 0;
    color: #271D00;
}

h4 {
    font-size: 1.8em;
    padding-top: 1em;
}

body {
    margin: 0;
}

body, html {
    overflow-x: hidden;
}

.header {
    background-color: #dfedf6;
}

.cta-light {
    font-size: 1.5em;
    font-style: italic;
    border-radius: 3em;
    text-decoration: none;
    padding: 0.5em 1em;
    background-color: #E6EFF7;
    color: #1A253D;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.cta-light:hover {
    text-decoration: underline;
    background-color: #d7e1eb;
    transform: scale(1.05) rotate(-2deg);
}

.cta-accent {
    font-style: italic;
    font-size: 1.5em;
    border-radius: 3em;
    text-decoration: none;
    padding: 0.5em 1em;
    background-color: #FF6E00;
    color: #FFF1E6;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    text-align: center;
}

.cta-accent:hover {
    text-decoration: underline;
    background-color: #e6690a;
    transform: scale(1.05) rotate(2deg);
}

.back-button {
    position: fixed;
    top: 5%;
    left: 5%;
    z-index: 1000;
}

.center-text {
    text-align: center;
    align-self: center;
}

@media (max-width: 700px) {
    .cta-accent {
        font-size: 1.2em;
        font-weight: 700;
    }
}