@charset "UTF-8";
/* CSS Document */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*{
  font-family:Helvetica;
}


/* NAV BAR */

.navbar {
	font-size: 12px;
	padding-bottom: 10px;
	background-color: #F5F5F5;
	border-bottom: 3px solid #D3D3D3;
	height: 50px;
}

.nav-links {
	padding-top: 15px;
	float: right;
	margin-right: 20%;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	color: black;
}

.nav-links:hover {
	opacity: 60%;
}

#logo-navbar {
	width: 200px;
	margin-left: 20%;
}


/* END NAV BAR */


/* MAIN PAGE */

.page-container {
	height: calc(100vh - 800px);
}

.page-header {
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 14px 200px;
	width: calc(100% - 400px);
	padding-top: 35px;
}

.page-header h1 {
	position: absolute;
	letter-spacing: 1px;
	font-size: 32px;
	color: #000000;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%)
}

#hglab {
	display: block;
	width: 65%;
	margin: auto;
	padding: 15px 0;
}

figcaption {
	color: black;
	font-style: italic;
	padding: 2px;
	text-align: center;
	margin-left: 75%;
	font-size: 10px;
}

figcaption a {
	text-decoration: none;
	color: black;
	transition: 0.5s;
}

figcaption a:hover {
	color: #A52A2A;
	letter-spacing: 1px;
}

.about-boxlink-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 14px 250px;
	width: calc(100% - 505px);
	height: 80px;
	background: #D3D3D3;
}

.about-boxlink-1 a {
	text-decoration: none;
}

.about-boxlink-container-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 14px 250px;
	width: calc(100% - 500px);
	height: 80px;
}

.about-boxlink-2 {
	display: flex;
	background: #D3D3D3;
	width: 50%;
	height: 80px;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin: 2px;
}

.about-boxlink-2 a {
	text-decoration: none;
}

.box-links {
	text-decoration: none;
	color: black;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 18px;
	transition: 0.5s;
}

.box-links:hover {
	color: #A52A2A;
	letter-spacing: 4px;
}

/* END MAIN PAGE */

/* SEQ DATA PAGE */

.goback {
	margin-top: 10px;
	margin-left: 20%;
}

.goback .goback-btn {
	background-color: #f1f1f1;
	color: black;
	font-size: 16px;
	border: 1px solid #D3D3D3;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
}

.goback .goback-btn:hover {
	background-color: #808080;
	color: white;
}

.data-page-header {
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 14px 200px;
	width: calc(100% - 400px);
	padding-top: 30px;
}

.data-page-header h1 {
	position: absolute;
	letter-spacing: 1px;
	font-size: 32px;
	color: #000000;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.data-page-container {
	margin: 100px 20%;
}

.data-links-headers {
	font-weight: bold;
	padding-top: 20px;
}

.genome-links {
	border: 2px solid #D3D3D3;
	border-radius: 5px;
}

ul.genome-links{
	list-style-type: circle;
	padding: 0 50px;
	line-height: 3;
}

ul.genome-links a {
	text-decoration: none;
	color: black;
}

ul.genome-links a:hover {
	color: #A52A2A;
}

.transcriptome-links {
	border: 2px solid #D3D3D3;
	border-radius: 5px;
}

ul.transcriptome-links{
	list-style-type: circle;
	padding: 0 50px;
	line-height: 3;
}

ul.transcriptome-links a {
	text-decoration: none;
	color: black;
}

ul.transcriptome-links a:hover {
	color: #A52A2A;
}

.download-btn {
	border: 0.5px solid lightgrey;
	padding: 4px 8px;
	margin: 0 40px;
	border-radius: 5px;
}


/* END SEQ DATA PAGE */

/* FOOTER */

footer {
	position: absolute;
	height: 5px;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 20px;
	align-content: center;
	bottom: 0;
}

footer p {
	color: #888888;
	font-size: 12px;
}

/* END FOOTER */
