@charset "utf-8";
/* CSS Document */
html { 
  background: linear-gradient(45deg, #35462F 0%, #476335 50%) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
lottie-player.logo-start{
    width: 100%; 
    height: 400px;
    margin: 0 auto;
}
lottie-player.logo-loop{
		width: 100%; 
		height: 400px;
		margin: 0 auto;
}
.master-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
}

.logo-container {
    border: 0px solid;
}

.logo-loop-container {
    position: absolute;
    z-index: 999;
    border: 0px solid blue;
    animation-name: fadeIn;
    animation-duration: 6s;
    animation-delay: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}