/* GENERAL STYLES */

body {

    color: #2F3436;
    font-size: 2.5em;
    font-weight: 300;
    font-family: 'Work Sans';
    background-color: #FFFFFF;
    text-align: center;
}

@media (min-width: 550px) {
    body {
    }
    h1,
    h2,
    .description {
        text-align: center;
    }
}

@media (min-width: 750px) {
    body {
    }
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
}

h1 {
    font-family: 'Work Sans';
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-family: 'Work Sans';
    font-size: 1.2em;
    font-weight: 400;
    text-align: center;
}

strong {
    font-family: 'Work Sans';
    font-weight: 400;
}

p a {
    padding: 1px 0;
    text-decoration: none;
    border-bottom: 1px dashed #5a7302;
    text-align: center;
}

a {
    transition: all 0.5s ease, background-color 175ms ease;
}

p.description {
    font-family: 'Work Sans';
    font-size: 1em;
    font-weight: 300;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
}

.social {
}


/* BUTTON */

.button,
button,
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0px 30px;
    margin-top: 40px;
    color: #FFFFFF;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
    background-color: #5a7302;
    border-radius: 3px;
    border: 1px solid #5a7302;
    cursor: pointer;
    box-sizing: border-box;
}

@media (min-width: 767px) {
    .button,
    button,
    input[type="button"] {
        margin-top: 50px;
    }
}

@media (min-width: 1200px) {
    .button,
    button,
    input[type="button"] {
        margin-top: 80px;
    }
}

.button:hover,
button:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="button"]:focus {
    color: #FFFFFF;
    background-color: #bb5930;
    border-color: transparent;
    outline: 0;
}


/* ICONS */

.fa__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-top: 40px;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #5a7302;
    text-decoration: none;
    color: white !important;;
}

@media (min-width: 767px) {
    .fa__link {
        padding: 20px;
        margin-top: 50px;
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .fa__link {
        /* padding: 30px; */
        margin-top: 80px;
    }
}

.fa__link:hover.li {
    background: #0077B5;
}

.fa__link:hover.ig {
    background: #BC2A8D;
}

.fa__link:hover.fb {
    background: #3B5998;
}

.fa__link:hover.tw {
    background: #0084B4;
}


/* MEDIA QUERIES */


/* Larger than mobile */

@media (min-width: 400px) {}


/* Larger than phablet (also point when grid becomes active) */

@media (min-width: 550px) {}


/* Larger than tablet */

@media (min-width: 750px) {}


/* Larger than desktop */

@media (min-width: 1000px) {}


/* Larger than Desktop HD */

@media (min-width: 1200px) {}