@keyframes intro {
	from{
		opacity: 0%;
		bottom: 40px;
	}
	to{
		opacity: 100%;
		bottom: 0px;
	}
}

@media (max-width: 600px) {
    #unity-canvas {
        width: 80vw !important;
        height: 25vh !important;
    }

    #unity-warning {
        width: 70vw !important;
    }
}

#unity-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 5%;
    position: relative;
  }
  

#unity-container.unity-desktop {
    position: relative;
    display: flex;
    flex-direction: column;
    left: auto;
    top: auto;
    transform: none;
    align-items: center;
    justify-content: center;
}

#unity-canvas-container {
    align-items: center;
    justify-content: center;
}

#unity-canvas {
    border: 10px solid rgba(255, 255, 255, 1);
    width: 90vw;
    height: 80vh;
}

#unity-warning {
    margin: 0 auto;
    margin-bottom: 5%;
    display: block;
    z-index: 1;
    background: none;
}

#unity-footer {
    color: rgba(255, 255, 255, 1);
    margin-left: 0%;
}

.background {
	color: black;
	position: fixed;
	bottom: 0%;
	width: 100vw;
	height: 100vh;
	z-index: 0;
}

.intro {
    position: relative;
    color: rgba(255, 255, 255, 1);;
    animation-name: intro;
    animation-duration: 3s;
    text-align: center;
    font: "Nunito", Arial, sans-serif;
    font-size: 64px !important;
    margin-bottom: 0%; 
    margin-top: 2%;
}