main .title {
    font-size: 36px;
    font-weight: 100;
    letter-spacing: 1px;
    text-align: center;
    padding: 2rem;
    color: var(--black);
}

main .title span {
    color: var(--primaryRed);
}

main .welcome .content .text {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0;
    word-spacing: 4px;
    line-height: 1.5;
    font-weight: 400;
}

.widget h3 {
    margin: 1rem;
    font-weight: 600;
    font-size: 20px;
    color: var(--grey);
    text-transform: capitalize;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.widget h3:before {
    position: absolute;
    content: "";
    bottom: -0.3125rem;
    left: 50%;
    width: 40%;
    height: 2px;
    background: var( --primaryRed);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a {
    text-decoration: none;
}

@media only screen and (max-width:768px) {
    h2 {
        font-size: 24px;
        font-weight: 900;
    }
    p {
        font-size: 16px;
        line-height: 1.5;
        word-spacing: 4px;
    }
    main .title {
        font-size: 24px;
    }
}