*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#logo {
  width: 120px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pixlab svg #anim {
  animation: fadeIn 1s ease-in infinite alternate;
 
}
body 
{
    width: 100vw;
    height: 100vh;
    background-color: #2a2a2a;
}
svg 
{
  height:120px;
}
.title-text-description 
{
    position: absolute;
    z-index:3;
    top: 0px;
    left: 30px;
    font-family: helvetica;
    color: #ffffff;
    font-size: 10pt;
    user-select: none;
}
.title-text-description02 
{
    position: absolute;
    z-index:3;
    bottom: 30px;
    left: 30px;
    font-family: Helvetica;
    color: #ffffff;
    font-size: 12pt;
    user-select: none;
}
.container
{
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    position: absolute;
}
#container-1
{
    z-index: 1;
}
#container-2
{
    z-index: 2;
}
.circle 
{
    margin: auto;
    width: 350px;
    height: 350px;
    background-color: transparent;
    border-radius: 50%;
    border: solid 2px #ffffff;
}
#circle-1 
{
    animation-delay: 0ms;
    animation-name: circleAnimation;
    animation-duration: 1000ms;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.Letters-container 
{
    margin: auto;
    display: inline-flex;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60pt;
    font-weight: bold;
    opacity: 1;
    translate: 0px 0px;
    animation-delay: 0ms;
    animation-name: lettersAnimation;
    animation-duration: 2000ms;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.text
{
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}
@keyframes circleAnimation 
{
    0% 
    {
        width: 0px;
        height: 0px; 
    }
    100% 
    {
        width: 350px;
        height: 350px;
    }
}
@keyframes lettersAnimation 
{
    0% 
    {
        opacity: 0;
        translate: 0px 50px;
    }
    50% 
    {
        opacity: 0;
        translate: 0px 50px;
    }
    100% 
    {
        opacity: 1;
        translate: 0px 0px;
    }
}

