body {
	margin: 0.5rem;
	font-size: 15px;
	font-family: Arial;
}

a, a:visited {
	color: rgb(0, 132, 255);
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
}

ul {
	margin-top: 0.5rem;
}

img, video {
	width: 100%;
}

/* External link icon */
a[target="_blank"]::after {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    margin-top: 0;
    margin-right: 3px;
    margin-bottom: 0;
    margin-left: 5px;
}


#navigation {
	display: flex;
	align-items: center;
	gap: 1rem;

	margin-bottom: 1rem;
	border-bottom: 2px solid rgb(194, 194, 194);

	padding-top: 0.25rem;
	padding-bottom: 0.75rem;
}

#navigation #logo {
	flex-grow: 1;


	display: flex;
	font-size: 18px;
}
#navigation #logo a {
	display: flex;
	align-items: center;
	gap: 10px;
}
#navigation #logo img {
	width: 32px;
}

#navigation .login {
	font-weight: bold;
}


#content {
	display: flex;
	justify-content: center;
}

#footer {
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 2px solid rgb(194, 194, 194);

	text-align: center;
}
#footer span {
	display: inline-block;
	padding-top: 0.5rem;
}


#screenshots {
	max-width: 35vw;
}
#screenshots img, #screenshots video {
	box-shadow: 0.125rem 0.125rem 0.25rem #CCCCCC;
	border: 1px solid #CCCCCC;
}
#screenshots div img:not(:first-of-type) {
	margin-top: 1rem;
}
.screenshot-main {
	display: none;
}
.screenshot-assettag {
	border: 1px solid #000000;
	margin-top: 1rem;
	width: 370px;
}
.screenshotDescription {
	margin-top: 10px;
	text-align: center;
	background-color: #fff5d0;
	padding: 10px;
}

.mini-hr {
	display: block;
	border-bottom: 2px solid #000000;
	width: 50%;
	margin-left: 25%;
	margin-top: 1rem;
	margin-bottom: 1rem;
	height: 2px;
}

#text p {
	margin-left: 1.25rem;
}
#text ul {
	margin-left: 2rem;
	padding-left: 0;
}

.highlight {
	padding: 0.5rem;
	margin-bottom: 1rem;
}
.pitch {
	background-color: #FFF5D0;
}
.trial {
	background-color: #D0FFE2;
}
.highlight.trial {
	margin-top: 2rem;
}
.highlight h1, 
.highlight h2, 
.highlight h3, 
.highlight h4, 
.highlight h5, 
.highlight h6 {
	padding-left: 0.75rem;
	margin-top: 0.5rem;
}

#description {
	display: flex;
	gap: 1.5rem;
	flex-direction: row;
}

/* ------------------------------------------------------------------------------------------------------------ */
/* MEDIA QUERIES */

/* Phones/iPad Mini in portrait mode */
@media only screen and (max-width: 768px) {	
	#navigation {
		flex-direction: column;
		justify-content: center;
	}

	#content {
		display: block;
	}

    /* Hide left side screenshots */
    #screenshots {
    	display: none;
    }
    /* Show inline screenshots */
    .screenshot-main {
    	display: unset;
    }

    #screenshot-assettag-inline {
    	display: none;
    }
}