@import url('https://fonts.googleapis.com/css?family=Varela+Round&display=swap');
/* entire site stuff */
:root {
    --main-color: #108800;
    --black: #000000;
    --white: #fff;
    --text-color: #c8c8c8;
    --bg-color: #1d1d1d;
}

.temp {
    text-align: center;
    padding-top: 5%;
    padding-bottom: 31%;
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
    font-family: 'Varela Round', sans-serif;
    min-height: 100vh;
}

#particles-js{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0px;
}

/* #particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease
}

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0
} */

/* main stuff */
main {
    overflow: auto;
    min-height: 625px;
}

/* header stuff */
header {
    background-color: var(--black);
    overflow: auto;
}

.logo {
    float: left;
}

nav {
    float: right;
    font-size: 20px;
    width: 50%;
    padding-top: 2rem;
}

nav ul{
    display: flex;
}

nav li {
    font-size: 18px;
    padding: 2.0em;
    list-style: none;
}

nav a {
    color: var(--main-color);
}

nav a:hover{
    color: var(--text-color);
    text-decoration: none;
}

/* footer stuff */
/* footer {
    width: 100%;
    position: fixed;
    bottom: 0;
} */

div#footer {
    background-color: var(--main-color);
    bottom: 0;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
}



.footer-info {
    width: 50%;
    text-align: center;
    float: left;
}

.footer-info  a{
    color: var(--text-color);
}

.footer-info  a:hover {
    color: var(--bg-color);
    text-decoration: none;
}

.footer-info > p{
    display: inline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
}

/* index stuff */
.container {
    padding-top: 100px;
    overflow: auto;
}

.projects-list {
    text-align: center;
}

.grid-group {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 100px; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.imgcontainer {
    width: 300px;
    height: 300px;
    background-size: 300px 300px;
    padding-top: 25%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0,0.12), 0 1px 2px rgba(.25, .8, .25, 1);
}

.imgcontainer#recent1 {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/spacebarx.png);
}
.imgcontainer#recent2 {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/breeding-grounds.png); 
}

.imgcontainer#recent3 {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/carrot.jpg);
}

.imgcontainer#apps-list {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/app-logo.png);
}

.imgcontainer#web-games-list {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/webgames.png);
}

.imgcontainer#indie-games-list {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.75)
    ),url(../images/controller.jpg);
}

.personal a:hover {
    text-decoration: none;
}

/* project stuff */
.projects {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr;
    grid-column-gap: 100px; */
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 20%;
    padding-right: 20%;
}

.description {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: 25%;
    width: 50%;
    text-align: justify;
    text-align-last: center;
}

.projects a:hover{
    text-decoration: none;
}

.finished{
    width: 300px;
    height: 300px;
    /* background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
    ),url(../images/project.png); */
    background-size: 300px 300px;
    padding-top: 5%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0,0.12), 0 1px 2px rgba(.25, .8, .25, 1);
    text-align: justify;
    text-align-last: center;

}

.current{
    width: 300px;
    height: 300px;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
    ),url(../images/code.png);
    background-size: 300px 300px;
    padding-top: 5%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0,0.12), 0 1px 2px rgba(.25, .8, .25, 1);

}

.web-game {
    text-align: center;
    padding-bottom: 5%;
    padding-top: 5%;
}

/* about */
.test {
    padding-bottom: 100%;
}

.leftside{
    float:left;
    width: 50%;
}

.rightside{
    float:right;
}

/* contact form */

.central{
    text-align: center;
    padding-bottom: 5%;
    padding-top: 5%;
}

input {
    border-color: var(--black);
    border-radius: 10px;
    width: 20%;
}

textarea{
    border-color: var(--black);
    border-radius: 10px;
    width: 20%;
}

input[type=submit]:hover{
    background-color: var(--main-color);
}

/* contact success */
.thanks {
    padding-top: 40px;
    padding-left: 40px;
    padding-bottom: 30%;
}

/* project work */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    text-align: center;
    grid-gap: 50px;
    /* grid-column-gap: 10%; */
    padding-top: 5%;
    padding-bottom: 5%;
}

/* game presentation */
.proname{
    padding-top: 100px;
    text-align: center;
    padding-bottom: 50px;
}

.presentwindow{
    text-align: center;
}

iframe{
    width:960px;
    height:600px;
    border:0;
}

.text{
    padding-left: 35%;
    padding-top: 50px;
    padding-right: 35%;
    padding-bottom: 50px;
}

/* project updates */
.info{

    padding-top: 40px;
    padding-left: 40px;
}

.update-section {
    margin-top: 50px;
    padding-left: 40px;
    width: 60%;
}