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

a {
    text-decoration: none;
}

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;
    width: 100vw;
    background-color: #222220;
}

.logo {
    animation: intro 3s;
    height: 100px;
    width: 100px;

}

.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: 72px !important;
    margin-top: 0%;
    margin-bottom: 0%;
}

.games {
    animation: intro 3s;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
}

.game {
    display: flex;
    width: 400px;
    height: 200px;
    background-image: url('./images/dialogue.png');
    background-size: 100% 100%;
}

.game-image {
    width: 100px;
    height: 100px;
    margin-left: 40px;
    margin-top: 30px;
}

.game-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-right: 25px;
    margin-left: 15px;
    margin-top: 30px;
}

.game-title {
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: 32pt;
    height:min-content;
    color: var(--text-color);
}

.game-desc {
    margin-top: 0%;
    color: var(--text-color);
}