@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700');

.not-selectable > * {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/** COLORS **/
:root {
    --primary-color: #1E1050;
    --secondary-color: #5B4F85;
    --tertiary-color: #8E87A7;
    --grey-1: #F2F2F2;
    --grey-2: #F9F9F9;
    --grey-3: #D4E1FE;
    --instagram-primary:#FF7E1D;
    --instagram-secondary:#FEF1D1;
    --facebook-primary:#D4F0FF;
    --facebook-secondary:#94B3FD;
    --tiktok-primary:#8E87A7;
    --tiktok-secondary:#F4F7FF;
    --twitter-primary:#B4E5FF;
    --twitter-secondary:#F5FFFF;
    --mail-secondary:#D8CFEA;
}

/** GENERAL **/
.centered {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Titillium Web', sans-serif;
    text-align: center;
    color: var(--primary-color);
}

ul > li {
    list-style: none;
    display: inline-grid;
}


h1 {
    font-size: 40px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-size: 32px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}
h3 {
    font-size: 28px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}

h4 {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}

h5 {
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}

h6 {
    font-size: 18px;
    line-height: 130%;
    font-weight: 700;
    font-style: normal;
}

p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

a, a:visited {
    color: var(--primary-color);
    cursor: pointer;
}

a:hover {
    color: var(--secondary-color);
}

/** UTILS **/
.bg-circle {
    background: url(../img/bg-circle.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.m-hidden {
    display: none;
}

.btn-primary {
    display: block;
    width: 100%;
    height: 34px;
    padding-top: 11px;
    background: #1E1050;
    border-radius: 30px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    margin: 8px auto 0px auto;
    text-align: center;

}

.divider {
    border: 1px solid #f2f2f2;
    margin: 0 auto;
    width: 100%;
    display: block;
}


/** FOOTER **/
footer {
    padding-bottom: 32px;
}

.links a, .links a:visited {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.links a:hover {
    color:#99FEFF;
}

.copyright {
    font-size: 14px;
}

.network {
    margin: 16px 0;
}

.circle-link {
    height: 45px;
    width: 45px;
    border-radius: 100%;
    margin: 8px;
    color: inherit;
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-icon {
    background-color: #FEF1D1;
}

.tiktok {
    background-color: var(--tiktok-secondary);
    color: var(--tiktok-primary);;
}

.tiktok:hover {
    background-color: var(--tiktok-primary);
    color: var(--tiktok-secondary);
}

.instagram {
    background-color: var(--instagram-secondary);
    color: var(--instagram-primary);
}

.instagram:hover {
    background-color: var(--instagram-primary);
    color: var(--instagram-secondary);
}

.twitter {
    background-color: var(--twitter-secondary);
    color: var(--twitter-primary);;
}

.twitter:hover {
    background-color: var(--twitter-primary);
    color: var(--twitter-secondary);
}

.facebook {
    background-color: var(--facebook-secondary);
    color: var(--facebook-primary);
}

.facebook:hover {
    background-color: var(--facebook-primary);
    color: var(--facebook-secondary);
}

.mail {
    background-color: white;
    color: var(--mail-secondary);
}

.mail:hover {
    background-color: var(--mail-secondary);
    color: white;
}

