body {
	margin: 0px;
	min-width: 320px;
	font-size: 1em;
	font-family: 'DM Sans', sans-serif;
	background-color: #90e4ef;
	display: flex;
    color: #393a3a;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

/* Adjust these according to whether they're open or not */
.pixiv {
	opacity: 100%;
}

.pwyw {
	opacity: 100%;
	/*opacity: 30%;*/
}

.custom {
	opacity: 100%;
	/*opacity: 30%;*/
}


/* Art sample containers */
#sample-container {
	width: 100%;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.art-sample {
	display: inline-block;
	padding: 5px;
	position: relative;
}

.art-sample img{
	max-height: 200px;
	max-width: 400px;
	border-radius: 5px;
}

.sample-price {
    position: absolute;
    bottom: 1em;
    left: 1em;
    font-size: 1.5em;
    background-color: #ffffffcc;
    border-radius: 5px;
    padding: 5px;
}

/* Style stuff  */
a, a:visited, a:hover, a:active {
  color: inherit;
}

#logo-wrapper {
	width: 100%;
	display: inline-block;
    text-align: center;
}

#logo {
	width: 70%;
	max-width: 500px;
}

#header-wrapper {
	margin-top: 80px;
	width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#header {
	display: inline-flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
	margin-bottom: 20px;
	background: white;
	width: 70%;
	max-width: 500px;
	border-radius: 10px;
	padding: 20px;
}

#header img {
	max-width: 1.5em;
	vertical-align: middle;
}

#header a {
	text-decoration: none;
}

.social {
	display: inline-block;
	margin: 5px;
}

#body-container{
	display: inline-block;
	background-color: #ffffff;
	border-radius: 10px;
	width: 90%;
	padding: 10px;
	max-width: 1000px;
	overflow-x: auto;
	margin-bottom: 40px;
}

#quicklinks {
	position: fixed;
    top: 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 1.1em;
    font-weight: bold;
    background-color: #ffffff;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: 2;
    border-bottom: 1px solid #44869f;
}

.quicklink {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

#quicklinks a{
	text-decoration: none;
}

li {
	margin-bottom: 10px;
}

table {
	border: 1px solid #467181;
	border-collapse:  collapse;
	color: #1e596e;
	margin-left: auto;
    margin-right: auto;
}

tr:nth-child(even) {
	background: #ecf7fb;
}

tr:nth-child(odd) {
	background: #f9feff;
}

td {
	border: 1px solid #467181;
	padding: 10px;
	text-align: center;
}

th {
	border: 1px solid #467181;
	padding: 10px;
}

td ul {
	padding-inline-start: 20px;
	text-align: left;
}

.com-type {
	color: #255fb5;
}

.samples {
	color: #0ea3bb;
}

.custom-pricing {
	color: #0aaf98;
}

.faq {
	color: #0ea3bb;
}

.tos {
	color: #255fb5;
}

@media only screen and (max-width: 600px) {
  body {
  	width: 100%;
  }

  #body-container {
  	width: 100%;
  	border-radius: 0px;
  }

  table {
  	font-size: .7em;
  }

  td {
  	padding: 5px;
  }

  th {
  	padding: 5px;
  }

  td ul {
  	padding-left: 0px;
    list-style-type: none;
  }


	.art-sample img{
		max-height: 150px;
		max-width: 300px;
	}
}