@charset "utf-8";

/* Reset all default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    line-height: 1;
    border-collapse: collapse;
    text-decoration: none;
    border-spacing: 0;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --rosa-kadosh: rgb(190, 22, 123);
    --active-menu: rgb(89, 0, 206);
}

html {
    padding: 4rem 0rem;
    font-size: 62.5%;
    background-color: rgba(48, 59, 79, 1);
    background-image: url('../img/bg.webp');
    background-repeat: repeat;
    background-size: 50%;
}

.pagina-ativa {
    color: var(--rosa-kadosh);
}

p{
    font-family: "Hind Madurai", sans-serif;
    font-weight: 400;
}

h1, h2, h3, header li{ 
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.container {
    background-color: white;
    max-width: 1280px;
    border-radius: 20px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 2rem;
}