body {
  background-color: black;
  color: white;  
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
}

* {
  box-sizing: border-box;
}


p {
  color: white;
  font-family: 'Open Sans', sans-serif;
}

.top {
  width: 100%;
  float: left;
}

.title {  
  width: 70%;
  float: left;
  padding-left: 2vw;
}
.menu {
  width: 30%;
  float: left;
  display: none;
}

.menu-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: left;  
  flex: 100%;
}

.mobilemenu {
  display: block;
}

.mainimg {
  position: relative;
  margin-top: -10vw;
  z-index: -1;
}


.menulink {
  color: sandybrown;
  font-size: 12px;
  text-decoration: none;
}

.description {
  text-align: left;
  width: calc(100% - 4vw);
  margin: auto;
  padding: 10px;
}

.patreon {
  width: 100%;
  text-align: center;  
  font-size: 1.22em;
  margin: 10px 0 20px 0;
}

#myLinks {
  display: none;
}

h1 {
  font-size: 6em;
  padding: 0;
  margin: 0;
  font-family: 'Six Caps', sans-serif;
}
h2 {
  font-size: 1.3em;
  margin: 0;
}
h3 {
  font-size: 1.2em;
}

a {
  color: sandybrown;
  font-family: 'Open Sans', sans-serif;
}

.mainblock {
  width: 100%;
  padding: 0 2vw 0 2vw;
}

.middle-container {
  width: 100%;
  float: left;
  text-align: center;
}

.art-container {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  color: white;
  justify-content: space-around;
  flex: 100%;
  width: 100%;
}
.art-container > div {
  width: 200px;
  margin: 10px;
}

.game-container {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  color: white;
  justify-content: space-around;
  flex: 100%;
  width: 100%;
  margin-bottom: 100px;
}
.game-container > div {
  width: fit-content;
  margin: 10px;
}
.game-title {
  width: 400px;
  margin: 30px auto 30px auto;
  font-size: 1.5em;
  color: rgba(255, 204, 0, 0.738);
  border-bottom: 2px solid rgba(255, 204, 0, 0.738);
  text-align: center;
}
.game-title > a {
  text-decoration: none;
  color: rgba(255, 204, 0, 0.738);
}

.artImg {
  max-width: 98%;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.artImg:hover {opacity: 0.7;}




@media (min-width:800px) {
  body {
    font-size: 12px;
  }
  h1 {
    font-size: 8em;
  }
  h2 {
    font-size: 1.4em;
  }
  .title {
    width: 40%;
  }
  .menu{
    width: 60%;
    display: block;
  }
  .mobilemenu {
    display: none;
  }
  .menulink {
    font-size: 12px;
  }
}

@media (min-width:1000px) {
  body {
    font-size: 14px;    
  }  
  h1 {
    font-size: 8em;
  }
  h2 {
    font-size: 1.4em;
  }
  .title {
    width: 40%;
  }
  .menu{
    width: 60%;
    display: block;
  }
  .mobilemenu {
    display: none;
  }
  .menulink {
    font-size: 14px;
  }
}

@media (min-width:1600px) {
  body {
    /* Never get larger than this */
    font-size: 16px;
  }  
  h1 {
    font-size: 8em;
  }
  h2 {
    font-size: 1.4em;
  }
  .title {
    width: 40%;
  }
  .menu{
    width: 60%;
    display: block;
  }
  .mobilemenu {
    display: none;
  }
  .menulink {
    font-size: 16px;
  }
}


/*FOR MODAL IMAGE*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Add Animation */
.modal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens 
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}*/