/* Desenvolvido por @raylissonx */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.linksText {
    color: #696969;
    font-size: 14px;
    padding: 22px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.linksArea {
    overflow: hidden;
    height: auto;
    width: 600px;
    display: block;
}

.itemLink {
    width: 100%;
    margin-bottom: -5px;
    pointer-events: none;
}

.copyrightText {
    font-size: 12px;
    padding: 22px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

@media screen and (max-width: 767px) {

.linksArea {
    width: 100%;
}
        
}