html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #fafafa;
}

h1 {
    font-family: PoppinsTitleBold;
    text-align: center;
    color: #57008e;
    font-size: 32px;
    margin-left: 5vw;
    margin-right: 5vw;
}

h2 {
    font-family: MulishDescRegular;
    text-align: center;
    color: #57008e;
}

h3 {
    font-family: MulishDescLight;
    text-align: justify;
    color: #57008e;
    margin-left: 3vw;
    margin-right: 3vw;
}

h4 {
    text-align: center;
    color: #fafafa;
    font-family: Mulish;
}

span {
    font-family: Mulish;
    word-break: break-all;
}

p, ul, li, a {
    font-family: Mulish;
    text-align: justify;
    line-height: 1.5;
}

p, ul, li {
    margin-left: 3vw;
    margin-right: 3vw;
}

footer#footer {
    display: flex;
    background-color: #3013de;
    animation: mudancadecorbackground 2.5s linear infinite;
    background-size: 100%;
    height: 10vh;
    padding: 2vh 0vw;
    justify-content: center;
    align-items: center;
}

footer#footer h4 {
    margin: 0px;
    padding: 0px;
}

@media screen and (max-width: 1023px) {
    p, ul, li, h3 {
        margin-left: 6vw;
        margin-right: 6vw;    }
}

/* animations */ 
@keyframes mudancadecorbackground {
    0% {
        background: #57008e;
    }   
    50% {
        background-color: #3013de;
    }
    100% {
        background-color: #57008e;
    }
}