@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;
  }
}


/* NAV BAR */

.navbar {
  	font-family:Helvetica;
	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 */

.page-header {
	font-family:Helvetica, Arial, sans-serif;	
	text-align: center;
	margin: 20px auto;
	padding-top: 15px;
}

.page-header h3 {
	letter-spacing: 1px;
	font-size: 24px;
	color: #000000;
	margin: 0;
}

.page-container {
	margin: auto;
  	width: 80%;
	max-width: 600px;
	padding: 20px;
}

.page-container .search-btn {
	background-color: #f1f1f1;
	color: black;
	font-size: 16px;
	border: 1px solid #D3D3D3;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	padding: 5px 10px;
	margin-top: 10px;
}

.page-container .search-btn:hover {
	background-color: #808080;
	color: white;
}

#sequenceDisplay {
  font-family: "Lucida Console", "Courier New", monospace;
  white-space: pre-wrap;
  margin: 20px;
  width: 100%;
  border: none;
  padding: 0;
}

/* 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 */

