h1 {
    font-size: 3rem;
    color: white;
    text-transform: uppercase;
    font-family: "Racing Sans One", cursive;
    margin-bottom: 35px;
}

h2 {
    font-size: 2.6rem;
    color: white;
    text-transform: uppercase;
    font-family: "Racing Sans One", cursive;
    text-align: center;
    margin-top: 4.3rem;
}

h3 {
    font-family: "Racing Sans One", cursive;
    color: #a7e129;
    font-size: 2.1rem;
    margin-bottom: 30px;
}

h4 {
    font-family: "Racing Sans One", cursive;
    color: #a7e129;
    font-size: 1.6rem;
}

a {
    color: #a7e129;
    text-decoration: none;
}

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

.subtext {
    text-align: center;
    margin-bottom: 2.8rem;
}

.button {
    background: #a7e129;
    display: inline-block;
    height: 38px;
    line-height: 38px;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-weight: 700;
    padding: 0 20px 0 15px;
    position: relative;
}

.button::before {
    content: "";
    top: 0;
    right: -10px;
    background: #a7e129;
    display: block;
    position: absolute;
    height: 38px;
    width: 20px;
    transform: skew(-20deg, 0deg);
}

.button::after {
    content: "";
    top: 0;
    right: -5px;
    background: #b0f045;
    display: block;
    position: absolute;
    height: 38px;
    width: 10px;
    transform: skew(-20deg, 0deg);
    border-left: solid 3px black;
    border-right: solid 3px black;
}

.one-half {
    width: 50%;
}

.one-third {
    width: 33.33%;
}

.widget h4 {
    color: white
}

/* Media query - fonts */

@media only screen and (max-width: 768px) {
    h1, h2 {
        font-size: 30px
    }

    h3 {
        font-size: 26px
    }

    h4 {
        font-size: 22px
    }
}