@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body{
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: system-ui;
    background-color: aliceblue;
}

.bloco-principal {
        height: calc(100% - 100px);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
}
.imagem-box{
    max-width: 300px;
    padding: 10px;
    z-index: 9999;
}
.imagem-principal {
    width: 100%;
}

.texto-desenvolvimento {
    color: #0d3886;
    animation: pulse infinite ease-out 2s ;
}
footer {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111734;
}
footer .footer-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    width: 100%;
}
.logo-gauss-link{
    text-decoration: none;
    color: #FFF;
}
footer .footer-container .logo-gauss{
    display: flex;
    flex-direction: column;
}
footer .footer-container .logo-gauss img{
    display: flex;
    flex-direction: column;
    width: auto;
    height: 2em;
}
footer .footer-container .logo-gauss .logo-container{
    display: flex;
    gap: 10px;
    align-items: center;
}
footer .footer-container .logo-gauss h1{
    font-size: 0.8rem;
    margin: 0;
}
footer .footer-container .logo-gauss p{
    margin: 0;
    font-size: 0.8rem;
    font-weight: 300;
}
#particles-js{
    position: absolute;
    top: 0;
    height: calc(100% - 100px);
    width: 100vw;
    z-index: 1;
}
.whatsapp-link {
	position: fixed;
	width: 60px;
	height: 60px;
    bottom: 117px;
    right: 19px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 1px 1px 2px #888;
	z-index: 1000;
}
 
.fa-whatsapp {
	margin-top: 16px;
}
/* ANIMAÇÃO PULSAR DO TEXTO */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}