@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

:root{
    --primary: rgb(255, 0, 255);
    --light: white;
    --dark: black;

    --link-color: white;

    --gameboxsize:400px;
}


*
{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    z-index: 1;
    box-sizing: border-box;
    
}

body
{
    background-color: rgb(0, 0, 0);
    min-height: 100vh;
    background: linear-gradient(black,rgb(112, 0, 101));
}
a{
    transition: all 0.2s;
}
a:hover{
color: var(--primary);
}

nav
{
    position:relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--dark);
    padding: 16px 32px;
}
.nav-title{
    color:white;
    transition: color 0.2s;
}

.nav-title:hover{
    color:var(--primary);
}

.menu
{
    display:block;
    flex:  1 1 0%;
    justify-content: flex-end;
    margin: 0 -16px;
}

.menu a
{
    margin: 0 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.1s linear;
    padding: 8px 15px;
    border-radius: 99px;
}

a{
    color: var(--link-color);
}

.fallbackBG
{
    color: white;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 30px;
    font-family: 'Open Sans', sans-serif;
}

.container{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container h1
{
    color: white;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-right: 5px;
}

.content{
    margin: 10px;

text-align: center;
color: white;
}

.recent-project-title
{
    color: white;
    width: 100%;
    height: 1em;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gamebox
{
    display: block;
    position: relative;
    height: 300px;
    width: 300px;
    left: 50%;
transform: translateX(-50%);
    background-color: red;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    margin-top: 40px;
}

.gamebox:hover{
    width: 350px;
    height: 350px;
}

.gamebox a{
    margin: 0;
    width: 100px;
    height: 100px;
    color: red;
}

#RecentGame
{
    background: url(https://github.com/Shadow-Eclipse/ShadowEclipse.github.io/raw/main/Media/Project_Krash_Logo.png);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    image-rendering: pixelated;
}


.footer{
    position: absolute;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    margin-top: 25px;
    bottom: 0px;
    box-shadow: 0px 0px 50px black;
    background-color: black;
}

.footer-links{
    padding: 20px;
}

.footer a{
margin: 20px;
    font-size: 50px;
}


@media (min-width:1090px){
    .hamburger{
        display: none;
    }
    .menu{
        display: flex;
    }
    
    :root{
        --gameboxsize: 400px;
    }
}




