/* 
font-family: "Source Sans 3", sans-serif;
font-family: "Sora", sans-serif;
font-family: "Manrope", sans-serif;
font-family: "Newsreader", serif; 
*/
:root {
    --color-branco: #ffffff;
    --color-cinca-claro1: #DDEAFF;
    --color-cinca-claro2: #E5E7E8;
    --color-cinca-claro3: #ACAFB4;
    --color-cinca-claro4: #888888;
    --color-cinca-claro5: #4b4b4b;
    --color-cinza-escuro: #313235;
    --color-cinza-escuro2: #181818;
    --color-azul-claro1: #9CBCFF;
    --color-azul-escuro: #4966FF;   

    --url-logo: url("../img/logo.svg");
    --url-bkg-globo: url("../img/bkg_globo2.png");
}

body{
    background-color: var(--color-cinza-escuro);
    width: 100vw;
    height: 100vh;
    background-image: var(--url-bkg-globo);
    background-position: right bottom;
    background-repeat: no-repeat;
}

h1.logo{
	background-image: var(--url-logo);
	background-repeat: no-repeat;
	width: 276px;
	height: 135px;
    position: relative;
    display: inline-block;
}
footer{
    position: fixed;
    width: 100%;
    height: 30px;
    bottom: 0px;
    color: var(--color-cinca-claro5);
    font-size: 12px;
    line-height: 24px;
    background-color: var(--color-cinza-escuro2);
    text-align: right;
    padding: 0 10px;
}
/* Small devices (landscape phones, max 575px and up) */
@media (min-width: 1px) and (max-width: 575px) {}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}