:root {
    --text-color: #16C60C;
}

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

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

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

* {
    margin: 0%;
    padding: 0%;
}

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

#unity-canvas-border {
    border: 10px solid rgba(255, 255, 255, 1);
}

#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 {
    width: 90vw;
    height: 80vh;
    display: block;
}

#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%;
}

body {
    font-family: "Jersey 20", sans-serif;
    font-weight: lighter;
    background-color: black;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    animation: intro 3s;
    height: 100px;
    width: 100px;
    position: absolute;
    left: 20px;
}

.background {
    animation: intro 3s;
	background-color: black;
	color: black;
	position: fixed;
	bottom: 0%;
    left: 0%;
    width: 100vw;
	height: 100vh;
	z-index: -1;
}

.intro {
    position: relative;
    color: var(--text-color);
    animation-name: intro;
    animation-duration: 3s;
    text-align: center;
    font-size: 64px !important;
    margin-bottom: 0%; 
    margin-top: 2%;
}

.game-link {
    position: relative;
    color: white;
    text-decoration: none;
}