@import url(https://fonts.googleapis.com/css?family=Poppins&display=swap);

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important
}

body {
    line-height: 1.6;
    font-family: Poppins, sans-serif
}

a {
    text-decoration: none
}

li {
    list-style: none
}

img {
    width: 100%
}

.container {
    max-width: 1400px;
    margin: auto
}

section #intro h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 100
}

section #intro p {
    color: #222;
    font-size: 1.1rem;
    font-weight: 100;
    text-align: center
}

#main-footer {
    padding: 4rem 0 2rem 0;
    background: #212529;
    color: #fff
}

#main-footer #boxes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

#main-footer a,
#main-footer li {
    color: #b4b4b4
}

#main-footer #info i {
    color: #3eb650;
    padding-right: 10px
}

#main-footer h1 {
    font-weight: 200
}

#main-footer img {
    max-width: 30px
}

#main-footer hr {
    border: #9c9c9c 1px solid;
    margin: 2rem 0
}

#main-footer p {
    text-align: center
}

.nav-active {
    color: #c3ffcb !important
}

@media (max-width:795px) {
    header nav .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    #header-overlay {
        height: 40vh
    }
}

@media (max-width:525px) {
    #main-footer #boxes {
        display: block;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    #main-footer #boxes .card {
        margin: auto;
        width: 200px;
        margin-bottom: 1.2rem
    }
}

@media (max-width:500px) {
    header nav .container #links {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr);
        grid-template-columns: repeat(2, 1fr)
    }

    header nav .container ul li {
        margin: .1rem .8rem;
        font-size: 1.2rem;
        cursor: pointer
    }
}